From 54a5a07b3446f123e4d76938f93cf8f896e23b3d Mon Sep 17 00:00:00 2001 From: heinzel Date: Fri, 11 Apr 2008 15:24:20 +0000 Subject: [PATCH] Update from the hello package. --- configure | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 0f72572..c716381 100755 --- a/configure +++ b/configure @@ -7,9 +7,9 @@ # # heinzel # -# $Id: configure,v 1.1 2008/02/19 14:12:59 heinzel Exp $ +# $Id: configure,v 1.2 2008/04/11 15:24:20 heinzel Exp $ # -VERSION='configure Version 0.1 $Revision: 1.1 $ ($Date: 2008/02/19 14:12:59 $ $Author: heinzel $)' +VERSION='configure Version 0.2 $Revision: 1.2 $ ($Date: 2008/04/11 15:24:20 $ $Author: heinzel $)' ### config ### FILES="" @@ -192,7 +192,7 @@ function configure() { if test "X${CONFIGURE_STATIC_FILE}" != "X" ; then static_file="$CONFIGURE_STATIC_FILE" - read expr < "$static_file" + expr="`cat \"$static_file\"`" else static_file="`mktemp configure.tmp.XXXXXX`" if test "1$?" -ne "10" -o "X${static_file}" = "X" \ @@ -271,8 +271,9 @@ done files="$FILES" if test "X${FILES_DEF}" != "X" -a -f "$FILES_DEF" ; then - read buf < "$FILES_DEF" - files="$files $buf" + while read line ; do + files="$files $line" + done < "$FILES_DEF" fi