]> git.saurik.com Git - apt.git/commitdiff
Move libraries to the statr of the compile line
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:50:55 +0000 (16:50 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:50:55 +0000 (16:50 +0000)
Author: jgg
Date: 1998-07-30 05:34:20 GMT
Move libraries to the statr of the compile line

buildlib/program.mak

index 8bca3c24ea8691cbde0d27be72d66de126eed6fc..41454ad72e50e6cd731723864fe6aa21a92d4811 100644 (file)
@@ -31,7 +31,7 @@ veryclean/$(LOCAL): clean/$(LOCAL)
 # The binary build rule
 $($(LOCAL)-BIN): $($(LOCAL)-OBJS)
        echo Building program $@
 # The binary build rule
 $($(LOCAL)-BIN): $($(LOCAL)-OBJS)
        echo Building program $@
-       $(CXX) $(CXXFLAGS) $(LDFLAGS) $(LFLAGS) -o $@ $(filter %.o,$^) $($(LOCAL)-SLIBS)
+       $(CXX) $(CXXFLAGS) $(LDFLAGS) $(LFLAGS) $($(LOCAL)-SLIBS) -o $@ $(filter %.o,$^)
 
 # Compilation rules
 vpath %.cc $(SUBDIRS)
 
 # Compilation rules
 vpath %.cc $(SUBDIRS)