Avoid recording the absolute path if not necessary for testing
This commit is contained in:
parent
5105c6c97f
commit
534c9037a6
|
@ -29,7 +29,7 @@ include $(BUILD)config.gnu.mk
|
|||
CFLAGS_ssev4= -msse4
|
||||
DLL_EXT= .dylib
|
||||
MAKE_LIB= $(LIBTOOL) -static $(LINK_INPUTS) -o $@
|
||||
MAKE_DLL= $(LD) -shared $(LINK_INPUTS) -o $(shell pwd)/$@
|
||||
MAKE_DLL= $(LD) -shared $(LINK_INPUTS) -o $@
|
||||
|
||||
|
||||
# On MacOSX, we will use basic frameworks e.g. for string and filesystem functions
|
||||
|
|
Loading…
Reference in New Issue