diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-20 23:01:44 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-03-21 14:03:31 -0700 |
commit | 3906acc00779dd31df84d4f555ecbc0d920e89f3 (patch) | |
tree | ac69867347a99d54203e77dd3f8d373fdbd6dbbd | |
parent | 80daed99de7fb7f3b7a42f8bfd169fa9a44b63f0 (diff) | |
download | crosstool-ng-3906acc00779dd31df84d4f555ecbc0d920e89f3.tar.gz crosstool-ng-3906acc00779dd31df84d4f555ecbc0d920e89f3.tar.bz2 crosstool-ng-3906acc00779dd31df84d4f555ecbc0d920e89f3.zip |
Move some scripts to a new directory, maintainer
... which are not of much interest to the end user.
Signed-off-by: Alexey Neyman <stilor@att.net>
-rw-r--r-- | Makefile.in | 7 | ||||
-rwxr-xr-x | maintainer/addToolVersion.sh (renamed from scripts/addToolVersion.sh) | 0 | ||||
-rwxr-xr-x | maintainer/patch-renumber.sh (renamed from scripts/patch-renumber.sh) | 0 | ||||
-rwxr-xr-x | maintainer/patch-rework.sh (renamed from scripts/patch-rework.sh) | 0 | ||||
-rw-r--r-- | scripts/build/debug/000-template.sh | 34 |
5 files changed, 3 insertions, 38 deletions
diff --git a/Makefile.in b/Makefile.in index 634abaf2..43040980 100644 --- a/Makefile.in +++ b/Makefile.in @@ -304,14 +304,13 @@ $(patsubst %,install-lib-%-copy,$(LIB_SUB_DIR)): $(DESTDIR)$(libdir) @tar cf - --exclude='*.sh.in' $(patsubst install-lib-%-copy,%,$(@)) \ |(cd "$(DESTDIR)$(libdir)"; tar xf -) -# Huh? It seems we need at least one command to make this rule kick-in. -install-lib-%: install-lib-%-copy; @true +# We need at least one command to make this rule kick-in. +install-lib-%: install-lib-%-copy + @true -# Huh? that one does not inherit the -opy dependency, above... install-lib-scripts: install-lib-scripts-copy @chmod a+x $(DESTDIR)$(libdir)/scripts/crosstool-NG.sh @chmod a+x $(DESTDIR)$(libdir)/scripts/saveSample.sh - @rm -f "$(DESTDIR)$(libdir)/scripts/addToolVersion.sh" install-lib-main: $(DESTDIR)$(libdir) $(patsubst %,install-lib-%,$(LIB_SUB_DIR)) @echo " INST 'steps.mk'" diff --git a/scripts/addToolVersion.sh b/maintainer/addToolVersion.sh index 38c2e552..38c2e552 100755 --- a/scripts/addToolVersion.sh +++ b/maintainer/addToolVersion.sh diff --git a/scripts/patch-renumber.sh b/maintainer/patch-renumber.sh index c9650ce9..c9650ce9 100755 --- a/scripts/patch-renumber.sh +++ b/maintainer/patch-renumber.sh diff --git a/scripts/patch-rework.sh b/maintainer/patch-rework.sh index d05d2c18..d05d2c18 100755 --- a/scripts/patch-rework.sh +++ b/maintainer/patch-rework.sh diff --git a/scripts/build/debug/000-template.sh b/scripts/build/debug/000-template.sh deleted file mode 100644 index 47d2caea..00000000 --- a/scripts/build/debug/000-template.sh +++ /dev/null @@ -1,34 +0,0 @@ -# Template file for a debug utility - -# Put your download code here -do_debug_foobar_get() { - # For example: - # CT_GetFile "foobar-${CT_FOOBAR_VERSION}" http://foobar.com/releases/ - : -} - -# Put your extract code here -do_debug_foobar_extract() { - # For example: - # CT_Extract "foobar-${CT_FOOBAR_VERSION}" - # CT_Patch "foobar" "${CT_FOOBAR_VERSION}" - : -} - -# Put your build code here -do_debug_foobar_build() { - # For example: - # mkdir -p "${CT_BUILD_DIR}/build-foobar" - # CT_Pushd "${CT_BUILD_DIR}/build-foobar" - # CT_DoExecLog CFG \ - # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure" \ - # --build=${CT_BUILD} \ - # --host=${CT_TARGET} \ - # --prefix=/usr \ - # --foobar-options - # CT_DoExecLog ALL make - # CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install - # CT_Popd - : -} - |