diff options
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/fix-configure.patch')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl/fix-configure.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/fix-configure.patch b/meta/recipes-devtools/tcltk/tcl/fix-configure.patch new file mode 100644 index 0000000000..8b2654bae0 --- /dev/null +++ b/meta/recipes-devtools/tcltk/tcl/fix-configure.patch | |||
@@ -0,0 +1,44 @@ | |||
1 | Index: unix/tcl.m4 | ||
2 | =================================================================== | ||
3 | --- tcl8.4.11/unix.orig/tcl.m4 | ||
4 | +++ tcl8.4.11/unix/tcl.m4 | ||
5 | @@ -845,7 +845,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ | ||
6 | # results, and the version is kept in special file). | ||
7 | |||
8 | if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then | ||
9 | - system=MP-RAS-`awk '{print $3}' /etc/.relid'` | ||
10 | + system=MP-RAS-`awk '{print $3}' /etc/.relid` | ||
11 | fi | ||
12 | if test "`uname -s`" = "AIX" ; then | ||
13 | system=AIX-`uname -v`.`uname -r` | ||
14 | @@ -2250,7 +2250,7 @@ AC_DEFUN(SC_BLOCKING_STYLE, [ | ||
15 | # results, and the version is kept in special file). | ||
16 | |||
17 | if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then | ||
18 | - system=MP-RAS-`awk '{print $3}' /etc/.relid'` | ||
19 | + system=MP-RAS-`awk '{print $3}' /etc/.relid` | ||
20 | fi | ||
21 | if test "`uname -s`" = "AIX" ; then | ||
22 | system=AIX-`uname -v`.`uname -r` | ||
23 | Index: unix/configure | ||
24 | =================================================================== | ||
25 | --- tcl8.4.11/unix.orig/configure | ||
26 | +++ tcl8.4.11/unix/configure | ||
27 | @@ -2130,7 +2130,7 @@ echo "configure:2121: checking system ve | ||
28 | # results, and the version is kept in special file). | ||
29 | |||
30 | if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then | ||
31 | - system=MP-RAS-`awk '{print }' /etc/.relid'` | ||
32 | + system=MP-RAS-`awk '{print }' /etc/.relid` | ||
33 | fi | ||
34 | if test "`uname -s`" = "AIX" ; then | ||
35 | system=AIX-`uname -v`.`uname -r` | ||
36 | @@ -7608,7 +7608,7 @@ echo "configure:7600: checking FIONBIO v | ||
37 | # results, and the version is kept in special file). | ||
38 | |||
39 | if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then | ||
40 | - system=MP-RAS-`awk '{print }' /etc/.relid'` | ||
41 | + system=MP-RAS-`awk '{print }' /etc/.relid` | ||
42 | fi | ||
43 | if test "`uname -s`" = "AIX" ; then | ||
44 | system=AIX-`uname -v`.`uname -r` | ||