diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-04-16 14:35:51 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-16 14:35:51 +0000 |
commit | 256e671e1944961ca4e19c13684cec34da1966bf (patch) | |
tree | b170d1e2bae0bf48f40e7a40caeda9ea89d7e06b /packages/tcltk/tk | |
parent | 1dabe9686d98a903097219d046aa167595c9387a (diff) |
tcltk: apply patch to fix a bogus line in the configure scripts
bash 3.1 has a more strict syntax checking than 3.0, this is why it bailed out only on some boxes
Diffstat (limited to 'packages/tcltk/tk')
-rw-r--r-- | packages/tcltk/tk/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/tcltk/tk/fix-configure.patch | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/packages/tcltk/tk/.mtn2git_empty b/packages/tcltk/tk/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/tcltk/tk/.mtn2git_empty diff --git a/packages/tcltk/tk/fix-configure.patch b/packages/tcltk/tk/fix-configure.patch new file mode 100644 index 0000000000..6c6f0374bd --- /dev/null +++ b/packages/tcltk/tk/fix-configure.patch @@ -0,0 +1,16 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- tk8.4.11/unix/configure~fix-configure ++++ tk8.4.11/unix/configure +@@ -1849,7 +1849,7 @@ + # results, and the version is kept in special file). + + if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then +- system=MP-RAS-`awk '{print }' /etc/.relid'` ++ system=MP-RAS-`awk '{print }' /etc/.relid` + fi + if test "`uname -s`" = "AIX" ; then + system=AIX-`uname -v`.`uname -r` |