mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-27 14:35:27 +00:00
Fix conditional for the directory existance test.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@528 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
@@ -33,7 +33,7 @@ html: avrdude-html/avrdude.html
|
||||
|
||||
avrdude-html/avrdude.html: $(srcdir)/$(info_TEXINFOS)
|
||||
texi2html -split_node $(srcdir)/$(info_TEXINFOS)
|
||||
if [ -e ./avrdude.html ]; then \
|
||||
if [ ! -e ./avrdude.html ]; then \
|
||||
mkdir -p avrdude-html; \
|
||||
mv -f *.html avrdude-html ; \
|
||||
else \
|
||||
|
Reference in New Issue
Block a user