Fix compile error under git submodules, bug534.

This commit is contained in:
Wilson Snyder 2012-07-22 19:51:14 -04:00
parent 3e03fef3e3
commit d2ede75c71
3 changed files with 7 additions and 3 deletions

View File

@ -45,6 +45,8 @@ indicates the contributor was also the author of the fix; Thanks!
**** Fix svdpi.h compile error on Apple OS.
**** Fix compile error under git submodules, bug534. [Aurelien Francillon]
* Verilator 3.833 2012/04/15

View File

@ -65,12 +65,14 @@ dbg: ../verilator_bin_dbg
cd obj_dbg && $(MAKE) TGT=../$@ VL_DEBUG=1 -f ../Makefile_obj
prefiles::
ifneq ($(UNDER_GIT),) # If local git tree... Else don't burden users
prefiles:: config_rev.h
ifneq ($(UNDER_GIT),) # If local git tree... Else don't burden users
# This output goes into srcdir if locally configured, as we need to distribute it as part of the kit.
config_rev.h: ${srcdir}/config_rev.pl ${srcdir}/../.git/logs/HEAD
$(PERL) ${srcdir}/config_rev.pl ${srcdir} >$@
else
config_rev.h: ${srcdir}/config_rev.pl
$(PERL) ${srcdir}/config_rev.pl ${srcdir} >$@
endif
maintainer-copy::

View File

@ -33,4 +33,4 @@ if ($data =~ /Changed but not updated/i
print "static const char* DTVERSION_rev = \"$rev\";\n";
# Die after the print, so at least the header has good contents
$rev =~ /UNKNOWN/ and die "%Error: No git revision found,";
$rev =~ /UNKNOWN/ and warn "%Warning: No git revision found,";