diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-03-11 06:35:51 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-03-11 06:35:51 (GMT) |
commit | 3ed20376e058b8d17c9c91d2c06107fcb67a0c3c (patch) | |
tree | c8346273c47d67d80ec2ef517bc09c7532c2d932 /bin/chkmanifest | |
parent | 04a3b2a4580ed6f2df9949d88cd553f85860e91e (diff) | |
download | hdf5-3ed20376e058b8d17c9c91d2c06107fcb67a0c3c.zip hdf5-3ed20376e058b8d17c9c91d2c06107fcb67a0c3c.tar.gz hdf5-3ed20376e058b8d17c9c91d2c06107fcb67a0c3c.tar.bz2 |
[svn-r26426] Merge of r26424 from the autotools_rework branch.
Made the chkmanifest script a little more sh-friendly.
Tested: Manually on jam by modifying svn-controlled files
Diffstat (limited to 'bin/chkmanifest')
-rwxr-xr-x | bin/chkmanifest | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/bin/chkmanifest b/bin/chkmanifest index 8abd8ea..646f815 100755 --- a/bin/chkmanifest +++ b/bin/chkmanifest @@ -79,12 +79,14 @@ done # # First get a list of all the pending files with svn stat and # check those. -svn_stat="$(svn stat -q)" +svn_stat=`svn stat -q` for file in $svn_stat; do + # Newly added files are not listed by svn ls, which - # we check below.. - # The line listing them starts with 'A'. - letter="$(echo $file | head -c 1)" + # we check later. + + # The line listing new files starts with 'A'. + letter=`echo $file | head -c 1` if [ "$letter" = "A" ]; then # Convert the seven Subversion status columns to './' so it matches # the manifest file name. @@ -106,7 +108,7 @@ done # Next check svn ls, which gets a list of all files that are # checked in. -svn_ls="$(svn ls -R)" +svn_ls=`svn ls -R` for file in $svn_ls; do path="./${file}" # Ignore directories |