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

@ -60,3 +60,6 @@ o /usr/local/ftp -> /home/ftp
------- -------
o replaced assert(0) with abort() o replaced assert(0) with abort()
1.1.4-0
-------
o added client_ tcp socket options to server configuration struct

View file

@ -1 +1 @@
1.1.3-6-dev 1.1.4-0-dev

View file

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