FreeCalypso > hg > freecalypso-tools
changeset 26:b301b75de0e0
install misc files into /usr/local/share/freecalypso as non-executable
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 23 Oct 2016 01:20:55 +0000 |
parents | 75cd626cf379 |
children | 24cb10d508d7 |
files | loadtools/install-helpers.sh rvinterf/etmsync/Makefile target-utils/compalstage/Makefile target-utils/loadagent/Makefile |
diffstat | 4 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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}
--- 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
--- 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