diff options
author | Jim Meyering <meyering@redhat.com> | 2008-02-04 15:45:29 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-02-09 14:50:04 +0100 |
commit | 4cad6d9284ae5b0ed576e0df7a2005ebc5e9f76e (patch) | |
tree | 4a518cd717bbe8946fa2f2a19c4774b39b57ee24 | |
parent | 1c906cd5b8e857d5c6442e3b17048a1c8cfd3940 (diff) | |
download | idutils-4cad6d9284ae5b0ed576e0df7a2005ebc5e9f76e.tar.gz idutils-4cad6d9284ae5b0ed576e0df7a2005ebc5e9f76e.tar.bz2 idutils-4cad6d9284ae5b0ed576e0df7a2005ebc5e9f76e.zip |
Pull vc-list-files from gnulib.
* bootstrap.conf (gnulib_modules): Add vc-list-files.
* build-aux/vc-list-files: Remove from version-control.
-rw-r--r-- | bootstrap.conf | 1 | ||||
-rwxr-xr-x | build-aux/vc-list-files | 50 |
2 files changed, 1 insertions, 50 deletions
diff --git a/bootstrap.conf b/bootstrap.conf index 6e92612..7727a7b 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -81,6 +81,7 @@ gnulib_modules=" strnlen1 strpbrk strsep + vc-list-files xalloc xalloc-die xgetcwd diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files deleted file mode 100755 index 72a6f54..0000000 --- a/build-aux/vc-list-files +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# List the specified version-controlled files. - -# Copyright (C) 2006, 2007 Free Software Foundation, Inc. - -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. - - -# List the specified version-controlled files. -# With no argument, list them all. -# This script must be run solely from the top of a $srcdir build directory. - -# If there's an argument, it must be a single, "."-relative directory name. -# cvsu is part of the cvsutils package: http://www.red-bean.com/cvsutils/ - -dir= -case $# in - 0) ;; - 1) dir=$1 ;; - *) echo "$0: too many arguments" 1>&2; exit 1 ;; -esac - -test "x$dir" = x && dir=. - -if test -d CVS; then - if test -x build-aux/cvsu; then - build-aux/cvsu --find --types=AFGM "$dir" - else - awk -F/ '{ \ - if (!$1 && $3 !~ /^-/) { \ - f=FILENAME; \ - sub(/CVS\/Entries/, "", f); \ - print f $2; \ - }}' \ - $(find ${*-*} -name Entries -print) /dev/null; - fi -else - git-ls-files "$dir" -fi |