mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
bugfix: Empty IMAGEDIR was not handled correctly
This commit is contained in:
parent
f4d469f8fa
commit
7183da8b7c
3 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -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
|
||||||
|
|
|
||||||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
||||||
1.1.3-6-dev
|
1.1.4-0-dev
|
||||||
|
|
|
||||||
|
|
@ -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 $@
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue