docs: get rid of any reference to the now long-gone svn repository
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Oct 10 13:12:28 2009 +0200 (2009-10-10)
changeset 1576906b7509835e
parent 1575 eb92c99b17cd
child 1577 c774b2cc7863
docs: get rid of any reference to the now long-gone svn repository
Makefile.in
configure
docs/overview.txt
     1.1 --- a/Makefile.in	Sat Oct 10 12:55:17 2009 +0200
     1.2 +++ b/Makefile.in	Sat Oct 10 13:12:28 2009 +0200
     1.3 @@ -195,10 +195,10 @@
     1.4  install-lib: uninstall-lib $(DESTDIR)$(LIBDIR) install-lib-main install-lib-samples
     1.5  
     1.6  install-lib-main: $(DESTDIR)$(LIBDIR)
     1.7 -	@for src_dir in config kconfig patches scripts; do              \
     1.8 -	     echo "  INST   '$${src_dir}/'";                            \
     1.9 -	     tar cf - --exclude=.svn --exclude='*.sh.in' $${src_dir}    \
    1.10 -	     |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -);                     \
    1.11 +	@for src_dir in config kconfig patches scripts; do  \
    1.12 +	     echo "  INST   '$${src_dir}/'";                \
    1.13 +	     tar cf - --exclude='*.sh.in' $${src_dir}       \
    1.14 +	     |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -);         \
    1.15  	 done
    1.16  	@chmod a+x $(DESTDIR)$(LIBDIR)/scripts/crosstool-NG.sh
    1.17  	@chmod a+x $(DESTDIR)$(LIBDIR)/scripts/saveSample.sh
    1.18 @@ -212,7 +212,7 @@
    1.19  #  - change every occurrence of CT_TOP_DIR to CT_LIB_DIR
    1.20  install-lib-samples: $(DESTDIR)$(LIBDIR) install-lib-main
    1.21  	@echo "  INST   'samples/'"
    1.22 -	@tar cf - --exclude=.svn samples |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -)
    1.23 +	@tar cf - samples |(cd "$(DESTDIR)$(LIBDIR)"; tar xf -)
    1.24  	@for samp_file in "$(DESTDIR)$(LIBDIR)/samples/"*"/crosstool.config"; do                    \
    1.25  	     $(sed) -r -i -e 's,\$$\{CT_TOP_DIR\},\$$\{CT_LIB_DIR\},g;' $${samp_file};           \
    1.26  	     $(sed) -r -i -e 's,^(CT_WORK_DIR)=.*,\1="\$${CT_TOP_DIR}/targets",;' $${samp_file}; \
     2.1 --- a/configure	Sat Oct 10 12:55:17 2009 +0200
     2.2 +++ b/configure	Sat Oct 10 13:12:28 2009 +0200
     2.3 @@ -374,7 +374,7 @@
     2.4  #---------------------------------------------------------------------
     2.5  # Compute the version string
     2.6  
     2.7 -# If this version is a svn snapshot, try to get the revision number
     2.8 +# If this version is n hg clone, try to get the revision number
     2.9  # If we can't get the revision number, use date
    2.10  case "${VERSION}" in
    2.11      *+hg|hg)
     3.1 --- a/docs/overview.txt	Sat Oct 10 12:55:17 2009 +0200
     3.2 +++ b/docs/overview.txt	Sat Oct 10 13:12:28 2009 +0200
     3.3 @@ -126,7 +126,7 @@
     3.4  
     3.5  The former should be used if you got crosstool-NG from a packaged tarball, see
     3.6  "Install method", below, while the latter is most useful for developpers that
     3.7 -checked the code out from SVN, and want to submit patches, see "The Hacker's
     3.8 +use a clone of the repository, and want to submit patches, see "The Hacker's
     3.9  way", below.
    3.10  
    3.11  Install method |