summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Hommel <wolf@code-wizards.com>2012-02-05 00:07:54 +0100
committerWolfgang Hommel <wolf@code-wizards.com>2012-02-05 00:07:54 +0100
commitd8053c280c0091f51df8715607b8e2535940790b (patch)
tree5d9305cbe05c59df5560a946ff94c0180c2f2f04
parentb067cdce2bffbebab08b52fe48848df44bf615c6 (diff)
downloadlibfaketime-0.9.1.tar.gz
Reorder linker flags as suggested by Lukas Fleischerv0.9.1
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 9118815..d4a04b5 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -69,7 +69,7 @@ ${OBJ}: faketime.c
${CC} -o $@ -c ${CFLAGS} ${EXTRA_FLAGS} $<
lib%.so.${SONAME}: %.o
- ${CC} -o $@ -Wl,-soname,$@ ${LDFLAGS} $<
+ ${CC} -o $@ -Wl,-soname,$@ $< ${LDFLAGS}
clean:
@rm -f ${OBJ} ${LIBS}