Add patch required to respect CFLAGS (forgotten in previous commit).

This commit is contained in:
Maxim Sobolev 2000-09-11 07:47:58 +00:00
parent 9e942d2b58
commit 85f243251f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32508

View File

@ -0,0 +1,15 @@
--- GNUmakefile.in.orig Thu Aug 31 17:40:17 2000
+++ GNUmakefile.in Mon Sep 11 10:31:06 2000
@@ -48,10 +48,9 @@
INCDIR = -I${J_INCDIR} -I${J_INCDIR}/genunix -I${J_INCDIR}/linux -I${J_INCDIR}/freebsd -I/usr/local/include
-OPTFLAGS = -O2
CDEBUGFLAGS =# -g -DDEBUG -DCOMPILE_DEBUG# -DRUNTIME_DEBUG
-NOOPTCFLAGS = -pipe -fPIC ${CDEBUGFLAGS} ${INCDIR}
-CFLAGS = ${OPTFLAGS} ${NOOPTCFLAGS}
+NOOPTCFLAGS = -fPIC ${CDEBUGFLAGS} ${INCDIR}
+CFLAGS += ${OPTFLAGS} ${NOOPTCFLAGS}
LIBS =
ifeq (${METAVM}, yes)