mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 04:43:32 +00:00
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:
parent
a9e9062ca1
commit
b9e1fead9e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16808
@ -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} \
|
||||
|
Loading…
Reference in New Issue
Block a user