Browse Source

- fix LIBS, don't link with unnecessary libraries, related to #1855859

git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4472 689a6050-402a-0410-94f2-e92a70836424
Henning Westerholt 17 years ago
parent
commit
73e46e9505
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/db_berkeley/Makefile

+ 2 - 2
utils/db_berkeley/Makefile

@@ -12,10 +12,10 @@ include ../../Makefile.sources
 
 # if you want to tune or reset flags
 #DEFS:=-DEXTRA_DEBUG  -I$(LOCALBASE)/BerkeleyDB.4.6/include
-DEFS +=-I$(LOCALBASE)/include -I$(LOCALBASE)/BerkeleyDB.4.6/include \
+DEFS+=-I$(LOCALBASE)/include -I$(LOCALBASE)/BerkeleyDB.4.6/include \
         -I$(SYSBASE)/include
         
-LIBS+=-L$(LOCALBASE)/lib -L$(SYSBASE)/lib -L$(LOCALBASE)/BerkeleyDB.4.6/lib -ldb
+LIBS=-L$(LOCALBASE)/lib -L$(SYSBASE)/lib -L$(LOCALBASE)/BerkeleyDB.4.6/lib -ldb
 
 include ../../Makefile.rules