tFix to re-enable building with automake-1.5. - vaccinewars - be a doctor and try to vaccinate the world
HTML git clone git://src.adamsgaard.dk/vaccinewars
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 7691f59fe94ef8c4ed07493a4a5f1259b8a868ba
DIR parent ec7b9b145b1ee08a189cd719f4576ef5149c8166
HTML Author: Ben Webb <ben@salilab.org>
Date: Mon, 8 Jul 2002 12:53:14 +0000
Fix to re-enable building with automake-1.5.
Diffstat:
M src/Makefile.am | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
---
DIR diff --git a/src/Makefile.am b/src/Makefile.am
t@@ -1,10 +1,11 @@
# Nasty hack; there seems to be no other way of disabling libtool for the
# link of the main executable...
if PLUGINS
-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
+MYLINK = $(LIBTOOL) --mode=link $(CCLD)
else
-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
+MYLINK = $(CCLD)
endif
+LINK = $(MYLINK) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
if GUI_CLIENT
GUISUBDIR = gui_client