summaryrefslogtreecommitdiff
path: root/packages/uClibc/0.9.33.2/0007-make-olddefconfig.patch
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2021-09-21 07:56:07 (GMT)
committerChris Packham <judge.packham@gmail.com>2021-09-21 09:24:32 (GMT)
commitdab2d8011ea67118348a6bd28ae3583960c1b5c3 (patch)
treeff5e58ebf6d3aa1fdff5fb1cf9888904f19cd4fa /packages/uClibc/0.9.33.2/0007-make-olddefconfig.patch
parente4394bf9bb684bf267a35f9efd59057e74c10784 (diff)
uClibc: Remove obsolete versions
The following versions were marked obsolete in crosstool-ng-1.24.0, remove them. - uClibc-0.9.33.2 Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/uClibc/0.9.33.2/0007-make-olddefconfig.patch')
-rw-r--r--packages/uClibc/0.9.33.2/0007-make-olddefconfig.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/packages/uClibc/0.9.33.2/0007-make-olddefconfig.patch b/packages/uClibc/0.9.33.2/0007-make-olddefconfig.patch
deleted file mode 100644
index 9c8a535..0000000
--- a/packages/uClibc/0.9.33.2/0007-make-olddefconfig.patch
+++ /dev/null
@@ -1,44 +0,0 @@
----
- Makefile.in | 3 +++
- extra/config/conf.c | 4 +++-
- 2 files changed, 6 insertions(+), 1 deletion(-)
-
---- a/extra/config/conf.c
-+++ b/extra/config/conf.c
-@@ -435,6 +435,7 @@
- const char *name;
- const char *configname = conf_get_configname();
- struct stat tmpstat;
-+ int olddefconfig = 0;
-
- setlocale(LC_ALL, "");
- bindtextdomain(PACKAGE, LOCALEDIR);
-@@ -451,6 +452,7 @@
- break;
- case 'd':
- input_mode = set_default;
-+ olddefconfig = 1;
- break;
- case 'D':
- input_mode = set_default;
-@@ -514,7 +516,7 @@
- switch (input_mode) {
- case set_default:
- if (!defconfig_file)
-- defconfig_file = conf_get_default_confname();
-+ defconfig_file = olddefconfig ? NULL : conf_get_default_confname();
- if (conf_read(defconfig_file)) {
- printf(_("***\n"
- "*** Can't find default configuration \"%s\"!\n"
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -460,6 +460,9 @@
- allnoconfig: $(conf)
- $(Q)$< -n extra/Configs/Config.in
-
-+olddefconfig: $(conf)
-+ $(Q)$< -d extra/Configs/Config.in
-+
- defconfig: $(conf)
- $(Q)$< -D extra/Configs/defconfigs/$(ARCH)/$@ extra/Configs/Config.in
-