aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-02 19:26:26 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-02 19:26:26 +0000
commit1322b0e1f7d7d297c8c31ee95cba05b7754bcc46 (patch)
treebcdd56c03d41d6e902ea4d7941cc1ac84b3eb50b
parent27c1f505ac225627f8f98f499af477c24f292ef4 (diff)
don't differentiate GNU/Hurd and GNU/kFreeBSD from GNU/Linux since they should have the same libs
svn path=/trunk/externals/template/; revision=15450
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2c3aa04..2d26a02 100644
--- a/Makefile
+++ b/Makefile
@@ -155,7 +155,7 @@ ifeq ($(UNAME),GNU)
OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer
CFLAGS += -fPIC
LDFLAGS += -Wl,--export-dynamic -shared -fPIC
- LIBS += -lc $(LIBS_gnu)
+ LIBS += -lc $(LIBS_linux)
STRIP = strip --strip-unneeded -R .note -R .comment
DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m)
endif
@@ -169,7 +169,7 @@ ifeq ($(UNAME),GNU/kFreeBSD)
OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer
CFLAGS += -fPIC
LDFLAGS += -Wl,--export-dynamic -shared -fPIC
- LIBS += -lc $(LIBS_kfreebsd)
+ LIBS += -lc $(LIBS_linux)
STRIP = strip --strip-unneeded -R .note -R .comment
DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m)
endif