Browse Source

- Fix the cleanup routine (it is not very nice to delete everything..)

experimental/first_unicode_implementation
Jani Taskinen 17 years ago
parent
commit
ae3433a77f
  1. 4
      build/build.mk
  2. 4
      build/buildcheck.sh

4
build/build.mk

@ -71,8 +71,8 @@ cvsclean-work:
done
svnclean-work:
@for i in `find . -type d -and -not -path '*/.svn/*'`; do \
(cd `dirname $$i` 2>/dev/null && svn propget svn:ignore $$i | xargs rm -rf && rm -rf *.o *.a .libs || true); \
@for i in `find . -type d -not -path '*/.svn/*' | grep -v '.svn'`; do \
(cd `dirname $$i` 2>/dev/null && rm -rf `svn propget svn:ignore . | grep -v config.nice` *.o *.a .libs || true); \
done
gitclean-work:

4
build/buildcheck.sh

@ -48,9 +48,9 @@ fi
if test "$1" = "2" && test "$2" -ge "50"; then
echo "buildconf: Your version of autoconf likely contains buggy cache code."
echo " Running svnclean for you."
echo " Running vcsclean for you."
echo " To avoid this, install autoconf-2.13."
./svnclean
./vcsclean
stamp=
fi

Loading…
Cancel
Save