summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index f3b5f3e..a5d451e 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -15,7 +15,7 @@ main.o: main.c
$(CC) -fpic -o main.o -c main.c
libfoo.so: foo.o libbar.so
- NIX_DEBUG=1 NIX_DONT_SET_RPATH=1 $(CC) -shared -o libfoo.so foo.o -L . -lbar -Wl,-rpath,/no-such-path
+ $(CC) -shared -o libfoo.so foo.o -L . -lbar -Wl,-rpath,`pwd`/no-such-path
foo.o: foo.c
$(CC) -fpic -o foo.o -c foo.c