diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-11 19:53:38 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-11 19:53:38 +0000 |
commit | cce96d2f0a4dd68676acee4d7dec6ef9d1a4626a (patch) | |
tree | 1e5c142286c06d7404d74339dc18ee7fcda8472a | |
parent | bd5de00effc82050fbae1b7fff8ec37c0f12a8be (diff) | |
download | LibXtract-cce96d2f0a4dd68676acee4d7dec6ef9d1a4626a.tar.gz LibXtract-cce96d2f0a4dd68676acee4d7dec6ef9d1a4626a.tar.bz2 LibXtract-cce96d2f0a4dd68676acee4d7dec6ef9d1a4626a.zip |
Attempt to fix Linux build error
-rw-r--r-- | tests/Makefile | 2 |
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) |