From bdb776127315c1ef046a1ac3a8ee19b4cbf8e971 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 17 Nov 1993 15:40:13 +0000 Subject: [PATCH] Don't pass CFLAGS to the linker, since this may clash with the OS_LINK_FLAGS --- lisp/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/GNUmakefile b/lisp/GNUmakefile index 8fc7234b0..d53d57c3d 100644 --- a/lisp/GNUmakefile +++ b/lisp/GNUmakefile @@ -1,4 +1,4 @@ -# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.7 1993/11/12 19:22:03 wlott Exp $ +# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.8 1993/11/17 15:40:13 ram Exp $ all: lisp.nm @@ -26,7 +26,7 @@ lisp: ${OBJS} version echo '1 + ' `cat version` | bc > ,version mv ,version version $(CC) ${CFLAGS} -DVERSION=`cat version` -c version.c - $(CC) $(CFLAGS) ${OS_LINK_FLAGS} -o ,lisp \ + $(CC) -g ${OS_LINK_FLAGS} -o ,lisp \ ${OBJS} version.o \ ${OS_LIBS} -lm mv -f ,lisp lisp -- GitLab