summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-03-21 06:01:44 (GMT)
committerAlexey Neyman <stilor@att.net>2017-03-21 21:03:31 (GMT)
commit3906acc00779dd31df84d4f555ecbc0d920e89f3 (patch)
treeac69867347a99d54203e77dd3f8d373fdbd6dbbd
parent80daed99de7fb7f3b7a42f8bfd169fa9a44b63f0 (diff)
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.in7
-rwxr-xr-xmaintainer/addToolVersion.sh (renamed from scripts/addToolVersion.sh)0
-rwxr-xr-xmaintainer/patch-renumber.sh (renamed from scripts/patch-renumber.sh)0
-rwxr-xr-xmaintainer/patch-rework.sh (renamed from scripts/patch-rework.sh)0
-rw-r--r--scripts/build/debug/000-template.sh34
5 files changed, 3 insertions, 38 deletions
diff --git a/Makefile.in b/Makefile.in
index 634abaf..4304098 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 38c2e55..38c2e55 100755
--- a/scripts/addToolVersion.sh
+++ b/maintainer/addToolVersion.sh
diff --git a/scripts/patch-renumber.sh b/maintainer/patch-renumber.sh
index c9650ce..c9650ce 100755
--- a/scripts/patch-renumber.sh
+++ b/maintainer/patch-renumber.sh
diff --git a/scripts/patch-rework.sh b/maintainer/patch-rework.sh
index d05d2c1..d05d2c1 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 47d2cae..0000000
--- 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
- :
-}
-