aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Bullock <jamie@jamiebullock.com>2014-11-11 19:53:38 +0000
committerJamie Bullock <jamie@jamiebullock.com>2014-11-11 19:53:38 +0000
commitcce96d2f0a4dd68676acee4d7dec6ef9d1a4626a (patch)
tree1e5c142286c06d7404d74339dc18ee7fcda8472a
parentbd5de00effc82050fbae1b7fff8ec37c0f12a8be (diff)
downloadLibXtract-cce96d2f0a4dd68676acee4d7dec6ef9d1a4626a.tar.gz
LibXtract-cce96d2f0a4dd68676acee4d7dec6ef9d1a4626a.tar.bz2
LibXtract-cce96d2f0a4dd68676acee4d7dec6ef9d1a4626a.zip
Attempt to fix Linux build error
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index a1e7330..2b8428c 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -82,7 +82,7 @@ $(OUT): $(OBJ)
ifeq "$(LIBRARY)" "static"
@$(AR) rcs $@ $^
else
- @$(COMPILER) $(LDFLAGS) $^ -o $@
+ @$(COMPILER) $^ $(LDFLAGS) -o $@
endif
debug: FLAGS = $(DEBUG_FLAGS)