From 3b624192af55e4a76b8d46c2bb3bff594dd5c34b Mon Sep 17 00:00:00 2001 From: nate 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(+) (limited to 'usr.bin/strip') diff --git a/usr.bin/strip/Makefile b/usr.bin/strip/Makefile index b9bfe09..3d19864 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.1