diff options
author | mi <mi@FreeBSD.org> | 2009-11-27 15:11:36 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2009-11-27 15:11:36 +0800 |
commit | abb6ce8d247685667626d7828b14d914dd979d5f (patch) | |
tree | 55a0f4cf1cae32cb7922f59c2f66f41661af552b /lang | |
parent | 3de6b4fc5545da31f54281013ee36f2dd567f795 (diff) | |
download | freebsd-ports-gnome-abb6ce8d247685667626d7828b14d914dd979d5f.tar.gz freebsd-ports-gnome-abb6ce8d247685667626d7828b14d914dd979d5f.tar.zst freebsd-ports-gnome-abb6ce8d247685667626d7828b14d914dd979d5f.zip |
Fix a line in configure script, which had a bug in it, that we didn't
care for, because the line was never reachable on FreeBSD.
Our new and improved sh cares deeply about such problems, however, and
configure started to fail even on 7-STABLE at the beginning of October.
Notified by: miwi
Diffstat (limited to 'lang')
-rw-r--r-- | lang/tclX/files/patch-configure | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lang/tclX/files/patch-configure b/lang/tclX/files/patch-configure index 54f417071836..8f438103e3fe 100644 --- a/lang/tclX/files/patch-configure +++ b/lang/tclX/files/patch-configure @@ -9,3 +9,10 @@ if test "$TEA_PLATFORM" = "windows"; then TCLSH_PROG=${REAL_TCL_BIN_DIR}/tclsh${TCL_MAJOR_VERSION}${TCL_MINOR_VERSION}${TCL_DBGX}${EXEEXT} else +@@ -7000,5 +7000,5 @@ + + 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 |