diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-12-22 20:10:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-12-22 20:10:10 +0000 |
commit | a334319f6530564d22e775935d9c91663623a1b4 (patch) | |
tree | b5877475619e4c938e98757d518bb1e9cbead751 /scripts/list-sources.sh | |
parent | 0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (diff) | |
download | glibc-a334319f6530564d22e775935d9c91663623a1b4.tar glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.gz glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.bz2 glibc-a334319f6530564d22e775935d9c91663623a1b4.zip |
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
Diffstat (limited to 'scripts/list-sources.sh')
-rwxr-xr-x | scripts/list-sources.sh | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/scripts/list-sources.sh b/scripts/list-sources.sh deleted file mode 100755 index 41c8b9eadd..0000000000 --- a/scripts/list-sources.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# -# List all the files under version control in the source tree. -# - -case $# in -0) ;; -1) cd "$1" ;; -*) echo >&2 "Usage: $0 [top_srcdir]"; exit 2 ;; -esac - -if [ -r CVS/Entries ]; then - - ${CVS:-cvs} status 2>&1 | ${AWK:-awk} ' -NF >= 2 && $(NF - 1) == "Examining" { dir = $NF } -$1 == "File:" { print (dir == ".") ? $2 : (dir "/" $2) }' - exit $? - -elif [ -r .svn/entries ]; then - - ${SVN:-svn} ls -R | sed '/\/$/d' - exit $? - -elif [ -r MT/options ]; then - - exec ${MONOTONE:-monotone} list known - -elif [ -r .git/HEAD ]; then - - exec ${GIT:-git} ls-files - -fi - -echo >&2 'Cannot list sources without some version control system in use.' -exit 1 |