From: deraadt Date: Thu, 13 Feb 1997 00:12:07 +0000 (+0000) Subject: ok, this time the $HOSTCC stuff works correctly X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c6edc73c0f552850d8993c9b9fb0e3185511e4b2;p=openbsd ok, this time the $HOSTCC stuff works correctly --- diff --git a/usr.bin/strip/Makefile b/usr.bin/strip/Makefile index 78cc445a0f1..cea2c117ea6 100644 --- a/usr.bin/strip/Makefile +++ b/usr.bin/strip/Makefile @@ -1,13 +1,13 @@ -# $OpenBSD: Makefile,v 1.4 1997/02/11 17:42:51 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 1997/02/13 00:12:07 deraadt Exp $ PROG= strip .if ${HOSTCC} != ${CC} STRIP=./hoststrip -realinstall:: hoststrip +realinstall: hoststrip hoststrip: strip.c - ${HOSTCC} strip.c -o hoststrip + ${HOSTCC} ${.CURDIR}/strip.c -o hoststrip .else STRIP=./strip .endif