# HG changeset patch # User "Yann E. MORIN" # Date 1233505073 0 # Node ID a4e9bf8c9448c81058b553cebcb8c848ba380d7a # Parent 268544004e77bece231f4d3f95732815cf462267 Set proper mode to installed files; fixes running when not using --local. /trunk/Makefile.in | 8 5 3 0 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff -r 268544004e77 -r a4e9bf8c9448 Makefile.in --- a/Makefile.in Sat Jan 31 17:49:27 2009 +0000 +++ b/Makefile.in Sun Feb 01 16:17:53 2009 +0000 @@ -195,10 +195,12 @@ install-lib: uninstall-lib $(DESTDIR)$(LIBDIR) install-lib-main install-lib-samples install-lib-main: $(DESTDIR)$(LIBDIR) - @for src_dir in config kconfig patches scripts; do \ - echo " INST '$${src_dir}/'"; \ - tar cf - --exclude=.svn $${src_dir} |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -); \ + @for src_dir in config kconfig patches scripts; do \ + echo " INST '$${src_dir}/'"; \ + tar cf - --exclude=.svn --exclude='*.sh.in' $${src_dir} \ + |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -); \ done + @chmod a+x $(DESTDIR)$(LIBDIR)/scripts/crosstool-NG.sh @rm -f "$(DESTDIR)$(LIBDIR)/scripts/addToolVersion.sh" @echo " INST 'steps.mk'" @$(install) -m 644 steps.mk "$(DESTDIR)$(LIBDIR)/steps.mk"