diff options
author | marino <marino@FreeBSD.org> | 2014-07-14 07:20:34 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-07-14 07:20:34 +0800 |
commit | 74ab119b2e15401ef1b8dc8e71b16ddc338c1688 (patch) | |
tree | 998746c74239222ee93117f9b341f22e862eb536 | |
parent | d6940e2a59a410ea4e193b1fe3e0f019c5618daf (diff) | |
download | freebsd-ports-gnome-74ab119b2e15401ef1b8dc8e71b16ddc338c1688.tar.gz freebsd-ports-gnome-74ab119b2e15401ef1b8dc8e71b16ddc338c1688.tar.zst freebsd-ports-gnome-74ab119b2e15401ef1b8dc8e71b16ddc338c1688.zip |
devel/psptoolchain-binutils: Fix stage support for DragonFly
The configure target was hardcoded for FreeBSD. This change fixes the
build on DragonFly while being a No-Op for FreeBSD.
-rw-r--r-- | devel/psptoolchain-binutils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/psptoolchain-binutils/Makefile b/devel/psptoolchain-binutils/Makefile index 8a7c98f95992..46a74835b283 100644 --- a/devel/psptoolchain-binutils/Makefile +++ b/devel/psptoolchain-binutils/Makefile @@ -17,7 +17,7 @@ USES= gmake tar:bzip2 libtool USE_GCC= any HAS_CONFIGURE= yes -CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-unknown-freebsd${OSREL} +CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl}${OSREL} CONFIGURE_ARGS= --prefix=${PREFIX} \ --target="psp" \ --enable-install-libbfd \ |