summaryrefslogtreecommitdiff
path: root/usr.bin/strip/Makefile
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-13 00:12:08 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-13 00:12:08 +0000
commit531b83cb6b19c9503a281f5f86dfe84c33c02f02 (patch)
tree509002b8d9e3271ccd1ae9bdb6a331db985c08d9 /usr.bin/strip/Makefile
parent92789be8a083330bcb10803bbaecf417a0dd61b5 (diff)
ok, this time the $HOSTCC stuff works correctly
Diffstat (limited to 'usr.bin/strip/Makefile')
-rw-r--r--usr.bin/strip/Makefile6
1 files 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