Trivial bugfix which occurs when DEBUG_FLAGS is defined. If DEBUG_FLAGS

is defined, STRIP is undefined and causes the Makefile to blow up, so
make sure STRIP is defined if you plan on using it.
This commit is contained in:
Nate Williams 1996-06-27 21:48:50 +00:00
parent a9e9062ca1
commit b9e1fead9e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16808

View File

@ -8,9 +8,11 @@ all: maybe_stripped
maybe_stripped: strip
cp -p strip maybe_stripped
.if defined(STRIP)
.if ${STRIP:M-s} != ""
./strip maybe_stripped
.endif
.endif
install: maninstall
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \