From: Rudi Schlatte Date: Mon, 22 Oct 2007 04:16:12 +0000 (+0000) Subject: 1.0.10.55: Remove non-portable arguments to find, xargs X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=182b1cc78309d1db9764a3e6a74d821109bbc096;p=sbcl.git 1.0.10.55: Remove non-portable arguments to find, xargs --- diff --git a/clean.sh b/clean.sh index 4d760c6..5241a76 100755 --- a/clean.sh +++ b/clean.sh @@ -113,4 +113,4 @@ find . \( \ -name 'tags' -o \ -name 'test-passed' -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 diff --git a/distclean.sh b/distclean.sh index 40a2365..41ed1b6 100644 --- a/distclean.sh +++ b/distclean.sh @@ -21,7 +21,7 @@ rm -rf customize-target-features.lisp # could use, perhaps referring to SourceForge anoncvs, what'd be the # point? I'd expect a comfortable majority of those who want to do # 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. sh clean.sh diff --git a/version.lisp-expr b/version.lisp-expr index 90eab03..d61e85b 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.10.54" +"1.0.10.55"