bugfix: Empty IMAGEDIR was not handled correctly

This commit is contained in:
Jan Lindemann 2002-12-15 17:45:30 +00:00 committed by Jan Lindemann
commit 7183da8b7c
3 changed files with 5 additions and 2 deletions

View file

@ -171,7 +171,7 @@ cfgtest.done:
test -n "$(AUTHORS)" # AUTHORS
test -n "$(TITLE)" # TITLE
test -n "$(SUBTITLE)" # SUBTITLE
test -d "$(IMAGEDIR)" # IMAGEDIR
test -d $(IMAGEDIR) # IMAGEDIR
@for IMG in $(IMAGES); do if [ ! -f $$IMG ]; then echo "$$IMG is missing"; exit 1; fi; done
test -n "$(VERSION)" # VERSION
touch $@