diff options
author | Steve Price <steve@FreeBSD.org> | 2000-05-29 03:53:13 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-05-29 03:53:13 +0000 |
commit | eee79b7cef181e6d556411fd8dbe41912767bf4f (patch) | |
tree | fc1970788641706a7f24de357bbe4c805fc3819b | |
parent | 788658d6c67556af2cc701c897abc2ea253edc40 (diff) | |
download | freebsd-ports-eee79b7cef181e6d556411fd8dbe41912767bf4f.zip |
Don't strip a Linux binary with FreeBSD's strip(1) or we can't brandelf(1)
them later.
PR: 18781
Submitted by: FUJISHIMA Satsuki <k5@cheerful.com>
-rw-r--r-- | graphics/linux-bmrt/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/linux-bmrt/Makefile b/graphics/linux-bmrt/Makefile index 65a6156fd75c..f4b8a879bea2 100644 --- a/graphics/linux-bmrt/Makefile +++ b/graphics/linux-bmrt/Makefile @@ -19,6 +19,10 @@ WRKSRC= ${WRKDIR}/BMRT2.5 NO_BUILD= yes NO_CDROM= "See the License" +# Linux binary should not be stripped by INSTALL_PROGRAM as it uses +# /usr/bin/strip which then brands the binary as a FreeBSD ELF one. +STRIP= + DOC_DIR= ${PREFIX}/share/doc/bmrt FETCH_CMD= /usr/bin/fetch -Ab PROGRAM= composite mkmip mkmosaic rendrib rgl slc slctell |