From 5868a8071700d342454b19d213c05f5f2a5e7ecd Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Sun, 20 Oct 2013 22:57:10 +0200 Subject: [PATCH] Fix make test to run correctly in a VM environment. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 54eee85..fbf3418 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,6 @@ libs: quicklisp $(ASDF_CONF) postmodern cl-csv --output build/pgloader.exe test: ./build/pgloader.exe - $(MAKE) PGLOADER=build/pgloader.exe -C test all + $(MAKE) PGLOADER=$(realpath ./build/pgloader.exe) -C test all check: test ;