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 /scripts/build | |
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>
Diffstat (limited to 'scripts/build')
-rw-r--r-- | scripts/build/debug/000-template.sh | 34 |
1 files changed, 0 insertions, 34 deletions
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 - : -} - |