diff options
author | steve <steve@FreeBSD.org> | 2000-05-29 11:51:37 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-05-29 11:51:37 +0800 |
commit | 8f2d1ea67ed79d773008edd0e0abd8161fedb3f6 (patch) | |
tree | ace63bcced51ef83864fb6a4d2d303dfaa77b510 | |
parent | 0d27a69b2e4a99cc724ac7f1ba2bb76d37a4eb1e (diff) | |
download | freebsd-ports-gnome-8f2d1ea67ed79d773008edd0e0abd8161fedb3f6.tar.gz freebsd-ports-gnome-8f2d1ea67ed79d773008edd0e0abd8161fedb3f6.tar.zst freebsd-ports-gnome-8f2d1ea67ed79d773008edd0e0abd8161fedb3f6.zip |
Don't strip a Linux binary with FreeBSD's strip(1) or we can't brandelf(1)
them later.
PR: 18780
Submitted by: FUJISHIMA Satsuki <k5@cheerful.com>
-rw-r--r-- | graphics/xmovie/Makefile | 4 | ||||
-rw-r--r-- | multimedia/linux-xmovie/Makefile | 4 | ||||
-rw-r--r-- | multimedia/xmovie/Makefile | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/graphics/xmovie/Makefile b/graphics/xmovie/Makefile index 9df1e90cdcd4..8baa0e9db09a 100644 --- a/graphics/xmovie/Makefile +++ b/graphics/xmovie/Makefile @@ -29,6 +29,10 @@ NO_BUILD= yes USE_X_PREFIX= yes WRKSRC= ${WRKDIR}/xmovie-i586 +# 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= + RPM_MIRRORS= \ ftp://ftp.freesoftware.com/pub/linux/redhat/__DIR__/ \ ftp://ftp.redhat.com/redhat/__DIR__/ \ diff --git a/multimedia/linux-xmovie/Makefile b/multimedia/linux-xmovie/Makefile index 9df1e90cdcd4..8baa0e9db09a 100644 --- a/multimedia/linux-xmovie/Makefile +++ b/multimedia/linux-xmovie/Makefile @@ -29,6 +29,10 @@ NO_BUILD= yes USE_X_PREFIX= yes WRKSRC= ${WRKDIR}/xmovie-i586 +# 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= + RPM_MIRRORS= \ ftp://ftp.freesoftware.com/pub/linux/redhat/__DIR__/ \ ftp://ftp.redhat.com/redhat/__DIR__/ \ diff --git a/multimedia/xmovie/Makefile b/multimedia/xmovie/Makefile index 9df1e90cdcd4..8baa0e9db09a 100644 --- a/multimedia/xmovie/Makefile +++ b/multimedia/xmovie/Makefile @@ -29,6 +29,10 @@ NO_BUILD= yes USE_X_PREFIX= yes WRKSRC= ${WRKDIR}/xmovie-i586 +# 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= + RPM_MIRRORS= \ ftp://ftp.freesoftware.com/pub/linux/redhat/__DIR__/ \ ftp://ftp.redhat.com/redhat/__DIR__/ \ |