diff options
author | reed <reed@pkgsrc.org> | 2004-08-31 19:24:42 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2004-08-31 19:24:42 +0000 |
commit | 1f835283b3fcc22526097b7141ab2290d5fec262 (patch) | |
tree | 9286ff3dd4a618844befaec03c288f25845ef3a7 /converters | |
parent | f22c43c82fa58b9e3888851fcb10a15536a112d3 (diff) | |
download | pkgsrc-1f835283b3fcc22526097b7141ab2290d5fec262.tar.gz |
Move including the ../../mk/bsd.prefs.mk and checking for Linux
to after GNU_CONFIGURE and USE_LIBTOOL being set.
This fixes the problem where the lt_cv_sys_max_cmd_len was not
added to the CONFIGURE_ENV.
Now that I think about it, I caused this problem when I added that
Linux check...
Diffstat (limited to 'converters')
-rw-r--r-- | converters/libiconv/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/converters/libiconv/Makefile b/converters/libiconv/Makefile index b700f04ab92..2b82387ab69 100644 --- a/converters/libiconv/Makefile +++ b/converters/libiconv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2004/06/04 05:25:38 reed Exp $ +# $NetBSD: Makefile,v 1.28 2004/08/31 19:24:42 reed Exp $ # DISTNAME= libiconv-1.9.1 @@ -10,12 +10,6 @@ MAINTAINER= rh@NetBSD.org HOMEPAGE= http://www.gnu.org/software/libiconv/ COMMENT= Character set conversion library -.include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "Linux" -# don't use PKG_SKIP_REASON yet so we can make sure the buildlinking is correct -PKG_FAIL_REASON+= "${PKGNAME} is not needed for Linux; it is included in GNU libc." -.endif - PKG_INSTALLATION_TYPES= overwrite pkgviews USE_BUILDLINK3= YES @@ -23,6 +17,12 @@ USE_PKGINSTALL= YES GNU_CONFIGURE= YES USE_LIBTOOL= YES +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Linux" +# don't use PKG_SKIP_REASON yet so we can make sure the buildlinking is correct +PKG_FAIL_REASON+= "${PKGNAME} is not needed for Linux; it is included in GNU libc." +.endif + TEST_TARGET= check EGDIR= ${PREFIX}/share/examples/libiconv |