summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/man/man/configure_sed.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/man/man/configure_sed.patch')
-rw-r--r--meta/recipes-extended/man/man/configure_sed.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-extended/man/man/configure_sed.patch b/meta/recipes-extended/man/man/configure_sed.patch
deleted file mode 100644
index d49e6831d9..0000000000
--- a/meta/recipes-extended/man/man/configure_sed.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1man: replace ',' with '#'
2
3Sometimes, the parameters of CC/BUILD_CC contains the ',', which
4cause the sed command failed, so replace the ',' with '#'
5
6Upstream-Status: Pending
7
8Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
9Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
10---
11 configure | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14diff --git a/configure b/configure
15index 9f62cf9..9a565ae 100755
16--- a/configure
17+++ b/configure
18@@ -1321,9 +1321,9 @@ do
19 echo "Creating $infile from $infile.in"
20 sed -e '
21 s,@version@,$version,
22-s,@CC@,$CC,
23+s#@CC@#$CC#
24 s,@EXEEXT@,$EXEEXT,
25-s,@BUILD_CC@,$BUILD_CC,
26+s#@BUILD_CC@#$BUILD_CC#
27 s,@INSTALL@,$INSTALL,
28 s,@DEFS@,$DEFS,
29 s,@LIBS@,$LIBS,
30--
311.9.1
32