diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-22 21:02:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-22 21:02:32 +0000 |
commit | 323a45099ab39e9cc34eca02d9e566ba8ce62df1 (patch) | |
tree | ef9e0e8b135035592a7d3eb7b43824e029af9b58 /src | |
parent | bfa1171c8420dc08259e41c89387f849952d1c44 (diff) | |
download | postgresql-323a45099ab39e9cc34eca02d9e566ba8ce62df1.tar.gz postgresql-323a45099ab39e9cc34eca02d9e566ba8ce62df1.zip |
Fix to install correctly in vpath build case.
Diffstat (limited to 'src')
-rw-r--r-- | src/timezone/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timezone/Makefile b/src/timezone/Makefile index 9b766dc5f5f..eec508f1ebe 100644 --- a/src/timezone/Makefile +++ b/src/timezone/Makefile @@ -4,7 +4,7 @@ # Makefile for the timezone library # IDENTIFICATION -# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.10 2004/05/21 05:08:06 tgl Exp $ +# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.11 2004/05/22 21:02:32 tgl Exp $ # #------------------------------------------------------------------------- @@ -21,7 +21,7 @@ ZICOBJS= zic.o ialloc.o scheck.o localtime.o # timezone data files TZDATA := africa antarctica asia australasia europe northamerica southamerica \ pacificnew etcetera factory backward systemv solar87 solar88 solar89 -TZDATAFILES := $(TZDATA:%=data/%) +TZDATAFILES := $(TZDATA:%=$(srcdir)/data/%) all: SUBSYS.o submake-libpgport zic |