diff options
author | smace <smace@FreeBSD.org> | 1998-11-24 04:47:09 +0000 |
---|---|---|
committer | smace <smace@FreeBSD.org> | 1998-11-24 04:47:09 +0000 |
commit | 41aafe2007204d6b22da412ac26dcb0c1c624f52 (patch) | |
tree | 3f01fa128bd01611dcadb9695fbe9a40f62b25b5 /news/trn | |
parent | 48bedf47590c5db2a5c57d3302e1b2771619c35a (diff) | |
download | FreeBSD-ports-41aafe2007204d6b22da412ac26dcb0c1c624f52.zip FreeBSD-ports-41aafe2007204d6b22da412ac26dcb0c1c624f52.tar.gz |
Bypass a sanity check that see if stdin is closed
in Configure script.
Submitted by: asami
Diffstat (limited to 'news/trn')
-rw-r--r-- | news/trn/files/patch-ad | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/news/trn/files/patch-ad b/news/trn/files/patch-ad new file mode 100644 index 0000000..36e9aff --- /dev/null +++ b/news/trn/files/patch-ad @@ -0,0 +1,19 @@ +--- Configure.orig Mon Nov 7 19:35:17 1994 ++++ Configure Mon Nov 23 21:55:23 1998 +@@ -65,11 +65,11 @@ + done + export PATH + +-: Some sanity checks +-if test ! -t 0; then +- echo "Say 'sh Configure', not 'sh <Configure'" +- exit 1 +-fi ++#: Some sanity checks ++#if test ! -t 0; then ++# echo "Say 'sh Configure', not 'sh <Configure'" ++# exit 1 ++#fi + + : On HP-UX, large Configure scripts may exercise a bug in /bin/sh + if test -f /hp-ux -a -f /bin/ksh; then |