remove unwanted files in case someone has compiled in the sync4j src dir

git-svn-id: https://zeitsenke.de/svn/SyncEvolution/trunk@131 15ad00c4-1369-45f4-8270-35d70d36bdcd
This commit is contained in:
Patrick Ohly 2006-06-10 12:21:35 +00:00
parent 7bb7460694
commit 5ae730ca62

View file

@ -22,7 +22,8 @@ if test ! "$SYNC4J"; then
if cp --update --archive $SYNC4JSRC/* src/client-api; then true; else
AC_MSG_ERROR( [copying $SYNC4JSRC into src/client-api failed] )
fi
find src/client-api -name "*~*" -o -name ".#*" -o -name "*.orig" | xargs rm
find src/client-api/build/autotools/include/* src/client-api/build/autotools/src/* -type d | xargs rm -rf
find src/client-api -name "*~*" -o -name ".#*" -o -name "*.orig" -o -name "stamp-*" -o -name "*.o" -o -name "*.lo" -o -name .libs -o -name autom4te.cache -o -name config.status | xargs rm -rf
else
if test ! -d src/client-api; then
if test -d $srcdir/src/client-api; then