diff options
author | Steve Price <steve@FreeBSD.org> | 2000-05-29 03:51:37 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-05-29 03:51:37 +0000 |
commit | 788658d6c67556af2cc701c897abc2ea253edc40 (patch) | |
tree | 05b7546dfc0145bf045cc8c8a77154f329e923cc | |
parent | 4cfca37ff8ce3e25b319bd11cadff231df82d607 (diff) | |
download | freebsd-ports-788658d6c67556af2cc701c897abc2ea253edc40.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__/ \ |