I have made the changes. Thanks!On Wednesday, April 30, 2014 12:25:17 PM UTC-4, Ivan Uemlianin wrote:
Dear All
In the install_files sections of the top-level Makefile, the install
commands have a space between the -m flag and the actual mode, e.g.:105 install_files_1: bin/patscc ; \ 106 $(INSTALL) -T -m 755 $< $(PATSLIBHOME2)/bin/patscc && echo $<
On freebsd at least, this trips up install, which reads that 755 as a
separate argument. This is fixed by removing the space, i.e.:105 install_files_1: bin/patscc ; \ 106 $(INSTALL) -T -m755 $< $(PATSLIBHOME2)/bin/patscc && echo $<
There are five points which need to be changed.
Thanks
Ivan