diff options
author | unknown <guilhem@mysql.com> | 2004-11-23 15:11:49 +0100 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2004-11-23 15:11:49 +0100 |
commit | 095934c6a53c14bec4290bf3aed2d5b2bfde104e (patch) | |
tree | 4be34a06b5eb4d085fd71f83a5089ee24a02064b /BUILD | |
parent | 8941ac568573f059233f37e8bef48039b2ecff41 (diff) | |
download | mariadb-git-095934c6a53c14bec4290bf3aed2d5b2bfde104e.tar.gz |
use distclean in BUILD/compile* scripts to make sure .deps dirs go
away (old .Plo files in them showed to cause build problems for at
least another dev and me, and they also cause problems after .c->.cc
renames).
BUILD/FINISH.sh:
use distclean in BUILD/compile* scripts to make sure .deps dirs go away (old .Plo files in them showed to
+cause build problems for at least another dev and me).
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD/FINISH.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh index 094eb8275d6..81defaa7f52 100644 --- a/BUILD/FINISH.sh +++ b/BUILD/FINISH.sh @@ -10,7 +10,7 @@ do done commands="\ -$make -k clean || true +$make -k distclean || true /bin/rm -rf */.deps/*.P config.cache innobase/config.cache bdb/build_unix/config.cache bdb/dist/autom4te.cache autom4te.cache innobase/autom4te.cache; aclocal || (echo \"Can't execute aclocal\" && exit 1) |