diff options
author | Allan McRae <allan@archlinux.org> | 2014-05-16 13:43:47 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-05-16 13:58:31 +1000 |
commit | c72399fbc5228580a560d8fe319ff98150928b05 (patch) | |
tree | a67ff51d077cef3b828dde2120090094571a268d /timezone/Makefile | |
parent | d16e6ec7ca2c861ba681e3a2fbd431725774292e (diff) | |
download | glibc-c72399fbc5228580a560d8fe319ff98150928b05.tar.gz glibc-c72399fbc5228580a560d8fe319ff98150928b05.tar.xz glibc-c72399fbc5228580a560d8fe319ff98150928b05.zip |
Fix variable used in sed expression in timezone/Makefile
Diffstat (limited to 'timezone/Makefile')
-rw-r--r-- | timezone/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timezone/Makefile b/timezone/Makefile index d5f647ccf6..0aef202536 100644 --- a/timezone/Makefile +++ b/timezone/Makefile @@ -118,7 +118,7 @@ $(testdata)/Asia/Tokyo: asia $(zic-deps) $(objpfx)tzselect: tzselect.ksh $(common-objpfx)config.make sed -e 's|/bin/bash|$(BASH)|' \ - -e 's|TZDIR=[^}]*|TZDIR=$(TZDIR)|' \ + -e 's|TZDIR=[^}]*|TZDIR=$(zonedir)|' \ -e '/TZVERSION=/s|see_Makefile|"$(version)"|' \ -e '/PKGVERSION=/s|=.*|="$(PKGVERSION)"|' \ -e '/REPORT_BUGS_TO=/s|=.*|="$(REPORT_BUGS_TO)"|' \ |