diff options
author | steve <steve@FreeBSD.org> | 2000-05-29 11:53:13 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-05-29 11:53:13 +0800 |
commit | 2a9324c92d32ff134b56e69c59eee3afde5c8cb9 (patch) | |
tree | 4a511f28f19e849c0dedb665eddff8913c724ac6 /graphics | |
parent | 8f2d1ea67ed79d773008edd0e0abd8161fedb3f6 (diff) | |
download | freebsd-ports-gnome-2a9324c92d32ff134b56e69c59eee3afde5c8cb9.tar.gz freebsd-ports-gnome-2a9324c92d32ff134b56e69c59eee3afde5c8cb9.tar.zst freebsd-ports-gnome-2a9324c92d32ff134b56e69c59eee3afde5c8cb9.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>
Diffstat (limited to 'graphics')
-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 |