diff options
author | Martin Dietze <herbert@spamcop.net> | 2009-11-29 21:04:08 +0100 |
---|---|---|
committer | Martin Dietze <herbert@spamcop.net> | 2009-11-29 21:04:08 +0100 |
commit | 4285ad5e1bb0bbc9508a8536aad66b439e9c03f8 (patch) | |
tree | 4ffbcd6581b8822a1299e494f125c1ef793c8276 /recipes/linux/linux-mtx-1-2.4.27/49-bash4-configure.patch | |
parent | 29fb31b1a559d1845efe7f1f46baa8ff6032f824 (diff) |
linux-mtx-[12]-2.4.27: support bash4 for oldconfig
* when using bash4 as /bin/sh the scripts/Configure script failed when running `make oldconfig', added patch to change `. .config' to `. ./.config'
Diffstat (limited to 'recipes/linux/linux-mtx-1-2.4.27/49-bash4-configure.patch')
-rw-r--r-- | recipes/linux/linux-mtx-1-2.4.27/49-bash4-configure.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/recipes/linux/linux-mtx-1-2.4.27/49-bash4-configure.patch b/recipes/linux/linux-mtx-1-2.4.27/49-bash4-configure.patch new file mode 100644 index 0000000000..222567d12e --- /dev/null +++ b/recipes/linux/linux-mtx-1-2.4.27/49-bash4-configure.patch @@ -0,0 +1,11 @@ +--- linux/scripts/Configure-orig 2009-11-29 19:12:02.000000000 +0100 ++++ linux/scripts/Configure 2009-11-29 19:12:27.000000000 +0100 +@@ -543,7 +543,7 @@ + echo "#" + echo "# Using defaults found in" $DEFAULTS + echo "#" +- . $DEFAULTS ++ . ./$DEFAULTS + sed -e 's/# \(CONFIG_[^ ]*\) is not.*/\1=n/' <$DEFAULTS >.config-is-not.$$ + . .config-is-not.$$ + rm .config-is-not.$$ |