From a9daf306a9b977683d7f5b66a3581dc5cf1b435a Mon Sep 17 00:00:00 2001 From: Richard M Kreuter Date: Wed, 27 Feb 2008 19:03:02 +0000 Subject: [PATCH] 1.0.15.4: Fix a non-POSIX usage of find(1) in binary-distribution.sh Fix contributed by Josh Elsasser. --- binary-distribution.sh | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/binary-distribution.sh b/binary-distribution.sh index e0f3438..2476edd 100755 --- a/binary-distribution.sh +++ b/binary-distribution.sh @@ -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` diff --git a/version.lisp-expr b/version.lisp-expr index ae95e65..d796916 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.15.3" +"1.0.15.4" -- 1.7.10.4