diff options
author | wiz <wiz@pkgsrc.org> | 2000-07-12 20:16:40 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-07-12 20:16:40 +0000 |
commit | ffee2ba2555f8ec0d400c9be8fedab5988dba206 (patch) | |
tree | 2f85672c870e43c199a797bf8a40baf44dfd7894 /pkgtools/url2pkg | |
parent | 1a08b2d76e9deeaf2779d9fcfff9a96caf6220d2 (diff) | |
download | pkgsrc-ffee2ba2555f8ec0d400c9be8fedab5988dba206.tar.gz |
s/USE_CONFIGURE/HAS_CONFIGURE/
bump version to 1.13.
Diffstat (limited to 'pkgtools/url2pkg')
-rw-r--r-- | pkgtools/url2pkg/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/url2pkg/files/url2pkg | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/url2pkg/Makefile b/pkgtools/url2pkg/Makefile index 834c8cd45f9..8ef11442c67 100644 --- a/pkgtools/url2pkg/Makefile +++ b/pkgtools/url2pkg/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.8 2000/06/22 00:13:41 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2000/07/12 20:16:40 wiz Exp $ # -DISTNAME= url2pkg-1.12 +DISTNAME= url2pkg-1.13 CATEGORIES= pkgtools sysutils MASTER_SITES= # Nothing DISTFILES= # Nothing diff --git a/pkgtools/url2pkg/files/url2pkg b/pkgtools/url2pkg/files/url2pkg index f5552776131..371f448f0e6 100755 --- a/pkgtools/url2pkg/files/url2pkg +++ b/pkgtools/url2pkg/files/url2pkg @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: url2pkg,v 1.12 2000/06/22 00:13:41 wiz Exp $ +# $NetBSD: url2pkg,v 1.13 2000/07/12 20:16:41 wiz Exp $ # # url2pkg # (c) 1999 Hubert Feyrer @@ -105,7 +105,7 @@ if [ -f $configure ]; then : 'configure generated by autoconf version.*' ; then GNU_CONFIGURE=YES else - USE_CONFIGURE=YES + HAS_CONFIGURE=YES fi fi @@ -117,8 +117,8 @@ echo "Fixing up Makefile." echo "WRKSRC= $WRKSRC" fi - if [ "${USE_CONFIGURE}" != "" ]; then - echo "USE_CONFIGURE= $USE_CONFIGURE" + if [ "${HAS_CONFIGURE}" != "" ]; then + echo "HAS_CONFIGURE= $HAS_CONFIGURE" fi if [ "${GNU_CONFIGURE}" != "" ]; then echo "GNU_CONFIGURE= $GNU_CONFIGURE" |