1.0.10.55: Remove non-portable arguments to find, xargs

This commit is contained in:
Rudi Schlatte 2007-10-22 04:16:12 +00:00
parent b9be3a45c0
commit 182b1cc783
3 changed files with 3 additions and 3 deletions

View file

@ -113,4 +113,4 @@ find . \( \
-name 'tags' -o \ -name 'tags' -o \
-name 'test-passed' -o \ -name 'test-passed' -o \
-name 'ldso-stubs.S' -o \ -name 'ldso-stubs.S' -o \
-name 'local-target-features.lisp-expr' \) -print0 | xargs -0 rm -f -name 'local-target-features.lisp-expr' \) -print | xargs rm -f

View file

@ -21,7 +21,7 @@ rm -rf customize-target-features.lisp
# could use, perhaps referring to SourceForge anoncvs, what'd be the # could use, perhaps referring to SourceForge anoncvs, what'd be the
# point? I'd expect a comfortable majority of those who want to do # point? I'd expect a comfortable majority of those who want to do
# CVS operations would be inclined to start with "cvs co" anyway.) # CVS operations would be inclined to start with "cvs co" anyway.)
find . \( -type d -a -name CVS \) -print0 | xargs -0 rm -r find . \( -type d -a -name CVS \) -print | xargs rm -r
# Fall through to ordinary cleanup. # Fall through to ordinary cleanup.
sh clean.sh sh clean.sh

View file

@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal ;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS ;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
"1.0.10.54" "1.0.10.55"