diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2006-01-05 17:42:24 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2006-01-05 17:42:24 +0000 |
commit | a4292877898732dd6d94e4aa3a0422ab8e6d4b6b (patch) | |
tree | 62d19c48b223c95f876946c0725115378f3df033 /pkgtools/url2pkg | |
parent | 3acd0de95984712cd63ccd1db9cd27f11d66516d (diff) | |
download | pkgsrc-a4292877898732dd6d94e4aa3a0422ab8e6d4b6b.tar.gz |
Remove GNU Autoconf's configure.lineno file if it's there.
Diffstat (limited to 'pkgtools/url2pkg')
-rwxr-xr-x | pkgtools/url2pkg/files/url2pkg | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgtools/url2pkg/files/url2pkg b/pkgtools/url2pkg/files/url2pkg index 5d6e210b408..989a26cefa2 100755 --- a/pkgtools/url2pkg/files/url2pkg +++ b/pkgtools/url2pkg/files/url2pkg @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: url2pkg,v 1.35 2006/01/05 17:32:50 xtraeme Exp $ +# $NetBSD: url2pkg,v 1.36 2006/01/05 17:42:24 xtraeme Exp $ # # url2pkg # (c) 1999-2002 Hubert Feyrer <hubert@feyrer.de> @@ -234,6 +234,10 @@ ls -la $wsrcdir if [ ! -f DESCR ]; then touch DESCR fi + +# GNU Autoconf scripts will create this file... remove it. +[ -f configure.lineno ] && rm configure.lineno + echo "" echo "Remember to correct CATEGORIES, HOMEPAGE, COMMENT, and DESCR when you're done!" echo "" |