Urk!! At some point, CFLAGS got set to -O2 rather than -O (which

has always been our "recommended optimization flag") and this causes
problems on the Alpha in addition to being generally wrong.
Noticed by:	dfr
This commit is contained in:
Jordan K. Hubbard 1998-10-01 09:27:02 +00:00
parent 667b14c256
commit c4da8a34e6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39854

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.393 1998/09/28 17:17:49 jkh Exp $
# $Id: Makefile,v 1.394 1998/09/30 20:54:28 jkh Exp $
#
# make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ]
#
@ -197,7 +197,7 @@ rerelease release:
-test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release
echo "#!/bin/sh" > ${CHROOTDIR}/mk
echo "set -ex" >> ${CHROOTDIR}/mk
echo "export CFLAGS='-O2 -pipe'" >> ${CHROOTDIR}/mk
echo "export CFLAGS='-O -pipe'" >> ${CHROOTDIR}/mk
echo "export DISTRIBUTIONS=\"${DISTRIBUTIONS}\"" >> ${CHROOTDIR}/mk
echo "export BUILDNAME=${BUILDNAME}" >> ${CHROOTDIR}/mk
echo "export VNDEVICE=${VNDEVICE}" >> ${CHROOTDIR}/mk