summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-05-15 15:33:49 +0200
committerJim Meyering <meyering@redhat.com>2009-05-15 15:45:15 +0200
commitdd90af287f158cf87d8d3a315c4010cebea61d91 (patch)
treeb7f67bdb2b4d52c38db4e1fa984fbdb4c1cddf84 /build-aux
parent413006e7942beb8fb3438fefe1bb6d1ea6b4e2f1 (diff)
downloadparted-dd90af287f158cf87d8d3a315c4010cebea61d91.tar.gz
build: use gnulib's vc-list-files module
* bootstrap.conf (gnulib_modules): Add vc-list-files, so we pull this file from gnulib. * build-aux/vc-list-files: Remove now-outdated file.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/vc-list-files60
1 files changed, 0 insertions, 60 deletions
diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files
deleted file mode 100755
index b170638..0000000
--- a/build-aux/vc-list-files
+++ /dev/null
@@ -1,60 +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 2, 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, write to the Free Software Foundation,
-# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-# 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,
-# with no trailing slashes. In mercurial mode, it's used as part of a
-# "grep" pattern (prepend "^", append "/"), and in cvs mode, it's simply
-# used as an argument to the cvsu script.
-# cvsu is part of the cvsutils package: http://www.red-bean.com/cvsutils/
-
-include_prefix=
-case $# in
- 0) ;;
- 1) include_prefix=$1 ;;
- *) echo "$0: too many arguments" 1>&2; exit 1 ;;
-esac
-
-if test -d .git; then
- if test "x$include_prefix" = x; then
- git-ls-files
- else
- git-ls-files | grep "^$include_prefix/"
- fi
-elif test -d .hg; then
- if test "x$include_prefix" = x; then
- hg manifest | cut -d ' ' -f 2
- else
- hg manifest | cut -d ' ' -f 2 | grep "^$include_prefix/"
- fi
-elif test -x build-aux/cvsu; then
- build-aux/cvsu --find --types=AFGM $include_prefix
-else
- awk -F/ '{ \
- if (!$1 && $3 !~ /^-/) { \
- f=FILENAME; \
- sub(/CVS\/Entries/, "", f); \
- print f $2; \
- }}' \
- $(find ${*-*} -name Entries -print) /dev/null;
-fi