diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-02-01 16:17:53 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-02-01 16:17:53 +0000 |
commit | 534ee284bb8f3c670a5ddf0de8679f8e3eeffc3d (patch) | |
tree | fed8c85626efe62e71fc4659f183dddd943710a1 /Makefile.in | |
parent | 380ac20c2d37eb2b019be20a4af3b862ab4f8154 (diff) | |
download | crosstool-ng-534ee284bb8f3c670a5ddf0de8679f8e3eeffc3d.tar.gz crosstool-ng-534ee284bb8f3c670a5ddf0de8679f8e3eeffc3d.tar.bz2 crosstool-ng-534ee284bb8f3c670a5ddf0de8679f8e3eeffc3d.zip |
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(-)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 0b300be7..eee57dae 100644 --- a/Makefile.in +++ b/Makefile.in @@ -195,10 +195,12 @@ install-bin: $(DESTDIR)$(BINDIR) 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" |