# HG changeset patch # User John Donoghue # Date 1420076791 18000 # Node ID 1f870f80ed71fad53e456c6655b76219c51df450 # Parent 0023c034ec4ad3a0032d79a5ca59be01f4f336cd makeinst-script: add \n to found icon file list (Bug #43909) * makeinst-script.sh: add \n to file printf on ICON=find command diff -r 0023c034ec4a -r 1f870f80ed71 makeinst-script.sh --- a/makeinst-script.sh Tue Dec 30 14:35:32 2014 -0500 +++ b/makeinst-script.sh Wed Dec 31 20:46:31 2014 -0500 @@ -21,7 +21,7 @@ # find octave shortcut icon -ICON=`find $OCTAVE_SOURCE -name octave-logo.ico -printf "%P" | head -1 | sed 's,/,\\\\,g'` +ICON=`find $OCTAVE_SOURCE -name octave-logo.ico -printf "%P\n" | head -1 | sed 's,/,\\\\,g'` # extract version number OCTAVE_VERSION=`head -1 $MXEDIR/octave/octave-version`