# HG changeset patch # User Mychaela Falconia # Date 1477185655 0 # Node ID b301b75de0e0750a3d173200b05fd7ac90eedba9 # Parent 75cd626cf379597e4c57b916abde0b2d78934582 install misc files into /usr/local/share/freecalypso as non-executable diff -r 75cd626cf379 -r b301b75de0e0 loadtools/install-helpers.sh --- a/loadtools/install-helpers.sh Sun Oct 23 01:00:19 2016 +0000 +++ b/loadtools/install-helpers.sh Sun Oct 23 01:20:55 2016 +0000 @@ -18,8 +18,8 @@ if [ -d target-binaries ] then - install -c target-binaries/* $instdir + install -c -m 644 target-binaries/* $instdir fi # scripts and loadtool.help should always be present -install -c scripts/* loadtool.help $instdir +install -c -m 644 scripts/* loadtool.help $instdir diff -r 75cd626cf379 -r b301b75de0e0 rvinterf/etmsync/Makefile --- a/rvinterf/etmsync/Makefile Sun Oct 23 01:00:19 2016 +0000 +++ b/rvinterf/etmsync/Makefile Sun Oct 23 01:20:55 2016 +0000 @@ -29,7 +29,7 @@ mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} mkdir -p ${INSTHELP} - install -c fsio.help ${INSTHELP} + install -c -m 644 fsio.help ${INSTHELP} clean: rm -f *.o *.out *errs ${PROGS} diff -r 75cd626cf379 -r b301b75de0e0 target-utils/compalstage/Makefile --- a/target-utils/compalstage/Makefile Sun Oct 23 01:00:19 2016 +0000 +++ b/target-utils/compalstage/Makefile Sun Oct 23 01:20:55 2016 +0000 @@ -26,7 +26,7 @@ install: mkdir -p ${INSTDIR} - install -c ${TARGETS} ${INSTDIR} + install -c -m 644 ${TARGETS} ${INSTDIR} clean: rm -f *.o *errs *core *.bin diff -r 75cd626cf379 -r b301b75de0e0 target-utils/loadagent/Makefile --- a/target-utils/loadagent/Makefile Sun Oct 23 01:00:19 2016 +0000 +++ b/target-utils/loadagent/Makefile Sun Oct 23 01:20:55 2016 +0000 @@ -30,7 +30,7 @@ install: mkdir -p ${INSTDIR} - install -c ${PROG}.srec ${INSTDIR} + install -c -m 644 ${PROG}.srec ${INSTDIR} clean: rm -f *.o *errs *core *.elf *.bin *.srec crt0.S