comparison binary-dist-rules.mk @ 3571:44eb8941c35f

fix make nsis-installer * binary-dist-files.mk: (make-installer-file): Add \ & ;\ to if test block.
author John Donoghue <john.donoghue@ieee.org>
date Thu, 20 Mar 2014 18:48:01 -0400
parents c53ea91b338b
children ba8987374138
comparison
equal deleted inserted replaced
3570:c7725f722155 3571:44eb8941c35f
134 @$(make-dist-files-writable) 134 @$(make-dist-files-writable)
135 @$(strip-dist-files) 135 @$(strip-dist-files)
136 @$(install-octave-wrapper-scripts) 136 @$(install-octave-wrapper-scripts)
137 137
138 define make-installer-file 138 define make-installer-file
139 if [ -f $(OCTAVE_NSI_FILE) ]; then 139 if [ -f $(OCTAVE_NSI_FILE) ]; then \
140 echo "deleting previous installer script..." 140 echo "deleting previous installer script..."; \
141 rm -f $(OCTAVE_NSI_FILE) 141 rm -f $(OCTAVE_NSI_FILE); \
142 fi 142 fi
143 echo "generating installer script..." 143 echo "generating installer script..."
144 ./makeinst-script.sh $(OCTAVE_DIST_DIR) $(OCTAVE_NSI_FILE) 144 ./makeinst-script.sh $(OCTAVE_DIST_DIR) $(OCTAVE_NSI_FILE)
145 echo "generating installer..." 145 echo "generating installer..."
146 $(TARGET)-makensis $(OCTAVE_NSI_FILE) > $(TOP_DIR)/dist/nsis.log 146 $(TARGET)-makensis $(OCTAVE_NSI_FILE) > $(TOP_DIR)/dist/nsis.log