From c6edc73c0f552850d8993c9b9fb0e3185511e4b2 Mon Sep 17 00:00:00 2001 From: deraadt Date: Thu, 13 Feb 1997 00:12:07 +0000 Subject: [PATCH] ok, this time the $HOSTCC stuff works correctly --- usr.bin/strip/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.20.1