Follow-up Comment #6, bug #25343 (project gnustep):

"install -p -m 644 gui.make 
/usr/local/share/GNUstep/Makefiles/Additional/gui.make
./install: line 1: 1: command not found"

That is due to gnustep-make's configure, which for mingw32 sets 

 INSTALL="install -p"

Presumably when executed inside gnustep-gui's makefile, that
tries to execute the file 'INSTALL' in the local directory,
which starts with the line "1 Installation".  So, the error

./install: line 1: 1: command not found

would mean that it tried to execute INSTALL (as a shell
script ?), and found an error on line 1, because it tried
to execute "1 Installation", but the command "1" was
"not found".

I think on other platforms we try to have INSTALL set to 
a full path to avoid issues.  Eg, on my machine it is set to
"/usr/bin/install -c".

Maybe using a full path there would help ?

Thanks

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?25343>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



_______________________________________________
Bug-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to