diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-03-16 23:22:04 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-03-17 23:09:23 +0100 |
commit | de1e91644917bf295b541aa4a72fc9e1c9ea4dcf (patch) | |
tree | ffa4b965c41e8a4306823bbdbe00589c108ea970 /package/crosstool-ng/crosstool-ng-000-makefile-recursion.patch | |
parent | b46cc58be7d6d33c4252c8653061a84750315a84 (diff) | |
download | buildroot-de1e91644917bf295b541aa4a72fc9e1c9ea4dcf.tar.gz buildroot-de1e91644917bf295b541aa4a72fc9e1c9ea4dcf.zip |
package/crosstool-ng: remove
No one is using this host-package, since we no longer have the
crosstool-NG toolchain backend.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/crosstool-ng/crosstool-ng-000-makefile-recursion.patch')
-rw-r--r-- | package/crosstool-ng/crosstool-ng-000-makefile-recursion.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/package/crosstool-ng/crosstool-ng-000-makefile-recursion.patch b/package/crosstool-ng/crosstool-ng-000-makefile-recursion.patch deleted file mode 100644 index b875e3f1a0..0000000000 --- a/package/crosstool-ng/crosstool-ng-000-makefile-recursion.patch +++ /dev/null @@ -1,38 +0,0 @@ -Makefile: allow recursion - -When crosstool-NG is used standalone, we completely avoid recursion, -because the Makefile calls itself only once. - -But when used as the buildroot toolchain backend, there is already -one level of make recursion when we first call the crosstool-NG -Makefile. And when buildroot is used out-of-tree, we are already -at the second level of recursion when calling the crosstool-NG -Makefile. - -So, to cope with the situation, just get rid of the recursion test. - -This probably won't go upstream. - -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> - -diff -du crosstool-ng-1.12.0/Makefile.in host-crosstool-ng-1.12.0/Makefile.in ---- crosstool-ng-1.12.0/Makefile.in 2011-08-01 01:21:34.000000000 +0200 -+++ host-crosstool-ng-1.12.0/Makefile.in 2011-08-07 21:39:16.055958219 +0200 -@@ -101,9 +101,14 @@ - # level. - # This has the side effect of only showing the real targets, and hiding our - # internal ones. :-) --ifneq ($(MAKELEVEL),0) --$(error Recursion detected, bailing out...) --endif -+# -+# NB: For buildroot, this has no importance: -+# - crosstool-NG should never ever be called manually -+# - thus auto-completion would never ever be attempted -+# - so we shouldn't have to detect it -+#ifneq ($(MAKELEVEL),0) -+#$(error Recursion detected, bailing out...) -+#endif - - MAKEFLAGS += $(CT_MAKEFLAGS) - build install clean distclean uninstall: |