diff options
author | peter <peter@FreeBSD.org> | 1998-06-12 16:22:25 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-06-12 16:22:25 +0000 |
commit | e819351604f95c9b21735416fe7f007e9170dcf7 (patch) | |
tree | 862749b409fb85f692665e2a9488ace56448c27b /usr.bin/strip | |
parent | bd88b2c525ccb85c6c79f9f2037a73861f161006 (diff) | |
download | FreeBSD-src-e819351604f95c9b21735416fe7f007e9170dcf7.zip FreeBSD-src-e819351604f95c9b21735416fe7f007e9170dcf7.tar.gz |
"./strip maybe_stripped" doesn't work too well if maybe_stripped is an
elf executable..
Diffstat (limited to 'usr.bin/strip')
-rw-r--r-- | usr.bin/strip/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/strip/Makefile b/usr.bin/strip/Makefile index 9911892..fe8ab01 100644 --- a/usr.bin/strip/Makefile +++ b/usr.bin/strip/Makefile @@ -11,7 +11,7 @@ maybe_stripped: strip cp -p strip maybe_stripped .if defined(STRIP) .if ${STRIP:M-s} != "" - ./strip maybe_stripped + -strip maybe_stripped .endif .endif |