mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
1.0.15.4: Fix a non-POSIX usage of find(1) in binary-distribution.sh
Fix contributed by Josh Elsasser.
This commit is contained in:
parent
6bbc22725d
commit
a9daf306a9
|
|
@ -20,6 +20,6 @@ tar -cf $b-binary.tar \
|
|||
$b/contrib/vanilla-module.mk \
|
||||
`for dir in $b/contrib/*; do
|
||||
if test -d $dir && test -f $dir/test-passed; then
|
||||
find $dir -name CVS -type d -prune -o -not -type d -not -name '.cvsignore' -print
|
||||
find $dir -name CVS -type d -prune -o \! -type d \! -name '.cvsignore' -print
|
||||
fi
|
||||
done`
|
||||
|
|
|
|||
|
|
@ -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.15.3"
|
||||
"1.0.15.4"
|
||||
|
|
|
|||
Loading…
Reference in a new issue