# HG changeset patch # User John Donoghue # Date 1395355681 14400 # Node ID 44eb8941c35fc5da2c1616ab5fcbaf188fd54239 # Parent c7725f7221554a79eaedd8302a3ecc1bc8319255 fix make nsis-installer * binary-dist-files.mk: (make-installer-file): Add \ & ;\ to if test block. diff -r c7725f722155 -r 44eb8941c35f binary-dist-rules.mk --- a/binary-dist-rules.mk Wed Mar 19 15:12:53 2014 -0400 +++ b/binary-dist-rules.mk Thu Mar 20 18:48:01 2014 -0400 @@ -136,9 +136,9 @@ @$(install-octave-wrapper-scripts) define make-installer-file - if [ -f $(OCTAVE_NSI_FILE) ]; then - echo "deleting previous installer script..." - rm -f $(OCTAVE_NSI_FILE) + if [ -f $(OCTAVE_NSI_FILE) ]; then \ + echo "deleting previous installer script..."; \ + rm -f $(OCTAVE_NSI_FILE); \ fi echo "generating installer script..." ./makeinst-script.sh $(OCTAVE_DIST_DIR) $(OCTAVE_NSI_FILE)