diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-10 13:12:28 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-10 13:12:28 +0200 |
commit | a83479174ba83d396deb118351983f2d95da3705 (patch) | |
tree | f424627d582fe3ad66b8745d4a4e7a6d012bcb5e /Makefile.in | |
parent | 632d59babdc692e6e669310a7564777ce59bdb5d (diff) | |
download | crosstool-ng-a83479174ba83d396deb118351983f2d95da3705.tar.gz crosstool-ng-a83479174ba83d396deb118351983f2d95da3705.tar.bz2 crosstool-ng-a83479174ba83d396deb118351983f2d95da3705.zip |
docs: get rid of any reference to the now long-gone svn repository
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index b0dd31d2..8fe49123 100644 --- a/Makefile.in +++ b/Makefile.in @@ -195,10 +195,10 @@ 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 --exclude='*.sh.in' $${src_dir} \ - |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -); \ + @for src_dir in config kconfig patches scripts; do \ + echo " INST '$${src_dir}/'"; \ + tar cf - --exclude='*.sh.in' $${src_dir} \ + |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -); \ done @chmod a+x $(DESTDIR)$(LIBDIR)/scripts/crosstool-NG.sh @chmod a+x $(DESTDIR)$(LIBDIR)/scripts/saveSample.sh @@ -212,7 +212,7 @@ install-lib-main: $(DESTDIR)$(LIBDIR) # - change every occurrence of CT_TOP_DIR to CT_LIB_DIR install-lib-samples: $(DESTDIR)$(LIBDIR) install-lib-main @echo " INST 'samples/'" - @tar cf - --exclude=.svn samples |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -) + @tar cf - samples |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -) @for samp_file in "$(DESTDIR)$(LIBDIR)/samples/"*"/crosstool.config"; do \ $(sed) -r -i -e 's,\$$\{CT_TOP_DIR\},\$$\{CT_LIB_DIR\},g;' $${samp_file}; \ $(sed) -r -i -e 's,^(CT_WORK_DIR)=.*,\1="\$${CT_TOP_DIR}/targets",;' $${samp_file}; \ |