Don't attempt to remove scripts directory in lh_clean if it doesn't exist.

This commit is contained in:
Daniel Baumann 2008-11-27 18:31:05 +01:00
parent a41e039597
commit 34192bcf31
1 changed files with 5 additions and 1 deletions

View File

@ -52,7 +52,11 @@ do
"${0}" --binary "${0}" --binary
"${0}" --stage "${0}" --stage
"${0}" --source "${0}" --source
rmdir --ignore-fail-on-non-empty scripts
if [ -d scripts ]
then
rmdir --ignore-fail-on-non-empty scripts
fi
;; ;;
--cache) --cache)