From cd80beea11be271a0b3c1034579d6ae228283e80 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Mon, 19 May 1997 15:04:03 -0700
Subject: [PATCH] now works with bash

Rev: src/modules/Oracle/configure.in:1.4
---
 src/modules/Oracle/configure.in | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/modules/Oracle/configure.in b/src/modules/Oracle/configure.in
index a51a0614b4..38ec42bf8a 100755
--- a/src/modules/Oracle/configure.in
+++ b/src/modules/Oracle/configure.in
@@ -1,5 +1,5 @@
 #
-# $Id: configure.in,v 1.3 1997/05/19 13:27:21 marcus Exp $
+# $Id: configure.in,v 1.4 1997/05/19 22:04:03 hubbe Exp $
 #
 # Configure script for the oracle module
 #
@@ -97,7 +97,7 @@ if test x$with_oracle = xyes; then
     fi
   fi
 
-  IFS="" read oracle_lib_dir < conftest
+  oracle_lib_dir="`cat oracle_lib_dir`"
 
   AC_MSG_RESULT($oracle_lib_dir)
 
@@ -123,7 +123,7 @@ if test x$with_oracle = xyes; then
     fi
   fi
 
-  IFS="" read oracle_include_dir < conftest
+  oracle_include_dir="`cat conftest`"
 
   AC_MSG_RESULT($oracle_include_dir)
 
@@ -151,12 +151,12 @@ if test x$with_oracle = xyes; then
       fi
     fi
 
-    IFS="" read oracle_sysliblist < conftest
+    oracle_sysliblist="`cat conftest`"
 
     if test x"$oracle_sysliblist" = xno; then
       pike_cv_oracle_sysliblist=""
     else
-      IFS="" read pike_cv_oracle_sysliblist < "$oracle_sysliblist"
+      pike_cv_oracle_sysliblist="`cat "$oracle_sysliblist"`"
     fi
   ])
 
-- 
GitLab