Avoid recording the absolute path if not necessary for testing

This commit is contained in:
Christophe de Dinechin 2017-11-08 17:38:40 +01:00
parent 5105c6c97f
commit 534c9037a6
1 changed files with 1 additions and 1 deletions

View File

@ -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