1.0.0.33: update build environment

.cvsignore: add more files
clean.sh: don't recurse into SCM directories
tools-for-build/canonicalize-whitespace: use more generic option to
check expand utility to make non-GNU expand happy
tools-for-build/whitespacely-canonical-filenames: add more SCM directories
This commit is contained in:
sa2c 2006-12-15 03:28:36 +00:00
parent bd455348d3
commit 4ca6d75333
7 changed files with 17 additions and 5 deletions

View file

@ -7,3 +7,4 @@ local-target-features.lisp-expr
TAGS
.svn
.gdbinit
.hg

View file

@ -73,6 +73,12 @@ done
# test-passed
# generated by automatic directory-test-thyself procedure
find . \( \
-name _darcs -o \
-name '{arch}' -o \
-name CVS -o \
-name .hg -o \
-name .svn \) -type d -prune -o \
\( \
-type l -o \
-name '*~' -o \
-name '#*#' -o \

View file

@ -174,7 +174,7 @@ futex_cleanup(void *p)
{
struct futex *futex = (struct futex *)p;
int ret, count;
ret = pthread_mutex_lock(&futex_lock);
futex_assert(ret == 0);

View file

@ -3,3 +3,4 @@ external-format-test.txt
stack-alignment-offset
test-status.lisp-expr
run-program-ed-test.tmp
threads-foreign.c

View file

@ -5,7 +5,7 @@
# Convert tabs to spaces and delete trailing whitespace in files
# which we can safely assume to be source files in appropriate languages.
if ! expand --version < $DEVNULL
if ! expand -t 8 < $DEVNULL
then
# If we're building with MSYS on Windows GNU expand is not available,
# and what we get is Microsoft Expand, which is something quite different,

View file

@ -15,7 +15,11 @@ source_extensions='.lisp .lisp-expr .c .h'
# ?
for source_extension in $source_extensions; do
find . -name _darcs -prune -o \
-name '{arch}' -prune -o \
find . \( \
-name _darcs -o \
-name '{arch}' -o \
-name CVS -o \
-name .hg -o \
-name .svn \) -type d -prune -o \
-name '*'$source_extension -print
done

View file

@ -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.0.32"
"1.0.0.33"