diff options
author | Tom Lane | 2005-07-05 23:18:44 +0000 |
---|---|---|
committer | Tom Lane | 2005-07-05 23:18:44 +0000 |
commit | 84d630eb24afb6887f9dff1362e1485d3db00017 (patch) | |
tree | 44144f4941a588759f77503e6b5f7c6898c0257c | |
parent | 326a7a0788b4e3c18d4e7008e3943bdb81a21769 (diff) |
Dept of second thoughts: don't expose rijndael.tbl: rijndael.c dependency
to make. We ship the table file in the tarball and so this dependency
just opens file timestamp skew problems without doing anything useful.
(Not that it should hurt, either ... except for cross-compile builds.)
-rw-r--r-- | contrib/pgcrypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/Makefile b/contrib/pgcrypto/Makefile index 36ca7f5c702..2fadf512045 100644 --- a/contrib/pgcrypto/Makefile +++ b/contrib/pgcrypto/Makefile @@ -1,5 +1,5 @@ # -# $PostgreSQL: pgsql/contrib/pgcrypto/Makefile,v 1.15 2005/07/05 23:13:57 tgl Exp $ +# $PostgreSQL: pgsql/contrib/pgcrypto/Makefile,v 1.16 2005/07/05 23:18:44 tgl Exp $ # # if you don't have OpenSSL, you can use libc random() or /dev/urandom @@ -59,6 +59,6 @@ endif rijndael.o: rijndael.tbl -rijndael.tbl: rijndael.c +rijndael.tbl: $(CC) $(CPPFLAGS) $(CFLAGS) -DPRINT_TABS rijndael.c -o gen-rtab ./gen-rtab > rijndael.tbl |