Fix false command not found warning in Makefiles.
This commit is contained in:
parent
0b96f88875
commit
7e9dda3c5e
2
Changes
2
Changes
|
|
@ -14,6 +14,8 @@ indicates the contributor was also the author of the fix; Thanks!
|
|||
|
||||
**** Fix core dump with over 100 deep UNOPTFLAT, bug432. [Joe Eiler]
|
||||
|
||||
**** Fix false command not found warning in makefiles. [Ruben Diez]
|
||||
|
||||
|
||||
* Verilator 3.831 2012/01/20
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ config_srcdir = @srcdir@
|
|||
ifeq ($(config_srcdir),.)
|
||||
srcdir = ..
|
||||
else # Run an experiment
|
||||
ifeq ($(shell -e $(config_srcdir)/../Makefile_obj.in),)
|
||||
ifeq ($(wildcard $(config_srcdir)/../Makefile_obj.in),)
|
||||
srcdir = $(config_srcdir)
|
||||
else
|
||||
srcdir = $(config_srcdir)/..
|
||||
|
|
|
|||
Loading…
Reference in New Issue