summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/Makefile
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-07-06 16:14:42 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-07-06 16:14:42 +0000
commit3d6b0d8631a7944b290873e5443455bb82773373 (patch)
treec0fb42712c1251b193d262da34322cad5d47ae06 /contrib/pgcrypto/Makefile
parent0bf8b273484006d03c55e86b3d26dec3811f984d (diff)
downloadpostgresql-3d6b0d8631a7944b290873e5443455bb82773373.tar.gz
Fix incorrect PG_CPPFLAGS initialization, per Marko.
Diffstat (limited to 'contrib/pgcrypto/Makefile')
-rw-r--r--contrib/pgcrypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/Makefile b/contrib/pgcrypto/Makefile
index 2fadf51204..63f73816d7 100644
--- a/contrib/pgcrypto/Makefile
+++ b/contrib/pgcrypto/Makefile
@@ -1,5 +1,5 @@
#
-# $PostgreSQL: pgsql/contrib/pgcrypto/Makefile,v 1.16 2005/07/05 23:18:44 tgl Exp $
+# $PostgreSQL: pgsql/contrib/pgcrypto/Makefile,v 1.17 2005/07/06 16:14:42 tgl Exp $
#
# if you don't have OpenSSL, you can use libc random() or /dev/urandom
@@ -16,7 +16,7 @@ CF_SRCS = $(if $(subst no,,$(with_openssl)), $(OSSL_SRCS), $(INT_SRCS))
CF_TESTS = $(if $(subst no,,$(with_openssl)), $(OSSL_TESTS))
CF_CFLAGS = $(if $(subst no,,$(with_openssl)), $(OSSL_CFLAGS), $(INT_CFLAGS))
-PG_CPPFLAGS := $(CF_CFLAGS) -I$(srcdir) $(PG_CPPFLAGS)
+PG_CPPFLAGS = $(CF_CFLAGS)
SRCS = pgcrypto.c px.c px-hmac.c px-crypt.c misc.c random.c \
crypt-gensalt.c crypt-blowfish.c crypt-des.c \