1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: rearrange linker order to fix new DSO linking FTBFS (LP: #770862)
Author: Alex Chiang <achiang@canonical.com>
Author: Oussama Bounaim <o.bounaim@gmail.com>
Bug-Ubuntu: https://bugs.launchpad.net/bugs/770862
Last-Update: <2012-11-2828>
--- mpc123-0.2.4.orig/Makefile
+++ mpc123-0.2.4/Makefile
@@ -50,7 +50,7 @@ TAR_EXCLUDED += \\{arch} .arch-ids $(wil
$(TARGET): $(DEPS) $(TARGET).c $(MOS)
@echo Building mpc123 version $(MAJOR).$(MINOR) ...
- $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $(DEPS) $(TARGET).c
+ $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(DEPS) $(TARGET).c $(LDFLAGS)
.PHONY: clean tarball
|