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
This commit is contained in:
Jérôme Duval
2004-11-21 23:22:56 +00:00
parent 9a75cd800e
commit d2ab012d92
Vendored
+1 -1
View File
@@ -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 <src!data!etc!timezones>${f##src/data/etc/timezones/} ?= $TZOBJECTS ;