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:
@@ -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 ;
|
||||
|
||||
Reference in New Issue
Block a user