summaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorPeter Eisentraut2007-02-09 15:56:00 +0000
committerPeter Eisentraut2007-02-09 15:56:00 +0000
commitc138b966d42e69446b52a3e65a596f0401c41a33 (patch)
tree1542dc3cf0db17ec247d9c9309bdbac419c63720 /src/interfaces
parentd7fee591dbf26e4f0ca52b05cee4b34ea84b7cd6 (diff)
Replace useless uses of := by = in makefiles.
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/Makefile6
-rw-r--r--src/interfaces/ecpg/test/Makefile4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile
index 4e68bf776b8..db0e4ff6716 100644
--- a/src/interfaces/Makefile
+++ b/src/interfaces/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.54 2007/01/20 17:16:15 petere Exp $
+# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.55 2007/02/09 15:55:59 petere Exp $
#
#-------------------------------------------------------------------------
@@ -12,9 +12,9 @@ subdir = src/interfaces
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
-DIRS := libpq ecpg
+DIRS = libpq ecpg
-ALLDIRS := $(DIRS)
+ALLDIRS = $(DIRS)
all install installdirs uninstall distprep:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
diff --git a/src/interfaces/ecpg/test/Makefile b/src/interfaces/ecpg/test/Makefile
index 204b123aec6..e5934c6fb32 100644
--- a/src/interfaces/ecpg/test/Makefile
+++ b/src/interfaces/ecpg/test/Makefile
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/interfaces/ecpg/test/Makefile,v 1.65 2007/01/21 09:23:29 petere Exp $
+# $PostgreSQL: pgsql/src/interfaces/ecpg/test/Makefile,v 1.66 2007/02/09 15:55:59 petere Exp $
subdir = src/interfaces/ecpg/test
top_builddir = ../../../..
@@ -12,7 +12,7 @@ TEMP_PORT = 5$(DEF_PGPORT)
MULTIBYTE = SQL_ASCII
# locale
-NOLOCALE :=
+NOLOCALE =
ifdef NO_LOCALE
NOLOCALE += --no-locale
endif