From d2ab012d92a0e546e96808d0a1ac7d28fc8bfe35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 21 Nov 2004 23:22:56 +0000 Subject: [PATCH] Fix a bug with timezones defined through Link (hint from Ingo). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10131 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ce763f34c6..4200431c0c 100755 --- a/configure +++ b/configure @@ -134,7 +134,7 @@ timezones=`echo src/data/etc/timezones/* | sed -e s@src/data/etc/timezones/CVS@@ for f in ${timezones}; do -TZOBJECTS=`gawk '/^(Zone|Link)/ { print $2 } ' $f ` +TZOBJECTS=`gawk '/^Zone/ { print $2 } /^Link/ { print $3 } ' $f ` cat << EOF >> build/BuildConfig TZ_OBJECTS on ${f##src/data/etc/timezones/} ?= $TZOBJECTS ;