# HG changeset patch # User "Yann E. MORIN" # Date 1255173148 -7200 # Node ID 906b7509835e21fd59b523f62d950e8255207667 # Parent eb92c99b17cd74ce27c88d4fbd39b87de1c3da76 docs: get rid of any reference to the now long-gone svn repository diff -r eb92c99b17cd -r 906b7509835e Makefile.in --- a/Makefile.in Sat Oct 10 12:55:17 2009 +0200 +++ b/Makefile.in Sat Oct 10 13:12:28 2009 +0200 @@ -195,10 +195,10 @@ 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 @@ # - 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}; \ diff -r eb92c99b17cd -r 906b7509835e configure --- a/configure Sat Oct 10 12:55:17 2009 +0200 +++ b/configure Sat Oct 10 13:12:28 2009 +0200 @@ -374,7 +374,7 @@ #--------------------------------------------------------------------- # Compute the version string -# If this version is a svn snapshot, try to get the revision number +# If this version is n hg clone, try to get the revision number # If we can't get the revision number, use date case "${VERSION}" in *+hg|hg) diff -r eb92c99b17cd -r 906b7509835e docs/overview.txt --- a/docs/overview.txt Sat Oct 10 12:55:17 2009 +0200 +++ b/docs/overview.txt Sat Oct 10 13:12:28 2009 +0200 @@ -126,7 +126,7 @@ The former should be used if you got crosstool-NG from a packaged tarball, see "Install method", below, while the latter is most useful for developpers that -checked the code out from SVN, and want to submit patches, see "The Hacker's +use a clone of the repository, and want to submit patches, see "The Hacker's way", below. Install method |