From b9e1fead9e106cddb600984f5f4744c8aed95f44 Mon Sep 17 00:00:00 2001 From: Nate Williams Date: Thu, 27 Jun 1996 21:48:50 +0000 Subject: 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. --- usr.bin/strip/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.bin/strip/Makefile b/usr.bin/strip/Makefile index b9bfe09a20e94..3d19864f4c223 100644 --- a/usr.bin/strip/Makefile +++ b/usr.bin/strip/Makefile @@ -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} \ -- cgit v1.3