diff options
author | alane <alane@FreeBSD.org> | 2003-02-14 07:36:02 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2003-02-14 07:36:02 +0800 |
commit | 844537a6df697c0a06008e968991bd1597fe0724 (patch) | |
tree | cc1a007dfe5cc9ced495b8ce5bd04740553c7426 /devel/autoconf262/files | |
parent | c5db4697644edf1b8b711f8e7d5abbcb74459c19 (diff) | |
download | freebsd-ports-gnome-844537a6df697c0a06008e968991bd1597fe0724.tar.gz freebsd-ports-gnome-844537a6df697c0a06008e968991bd1597fe0724.tar.zst freebsd-ports-gnome-844537a6df697c0a06008e968991bd1597fe0724.zip |
starting work on actual port; this commit removes files from a previous version
Diffstat (limited to 'devel/autoconf262/files')
-rw-r--r-- | devel/autoconf262/files/patch-bin-autoscan.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/devel/autoconf262/files/patch-bin-autoscan.in b/devel/autoconf262/files/patch-bin-autoscan.in deleted file mode 100644 index 68836ffb60bc..000000000000 --- a/devel/autoconf262/files/patch-bin-autoscan.in +++ /dev/null @@ -1,15 +0,0 @@ ---- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 -+++ bin/autoscan.in Mon Sep 16 03:56:50 2002 -@@ -192,7 +192,11 @@ - sub used ($$;$) - { - my ($kind, $word, $where) = @_; -- $where ||= "$File::Find::name:$."; -+ my $lineno = 0; -+ if (defined($.)) { -+ $lineno = $.; -+ } -+ $where ||= "$File::Find::name:$lineno"; - push (@{$used{$kind}{$word}}, $where); - } - |