1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Replace useless uses of := by = in makefiles.

This commit is contained in:
Peter Eisentraut
2007-02-09 15:56:00 +00:00
parent d7fee591db
commit c138b966d4
46 changed files with 121 additions and 123 deletions

View File

@ -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

View File

@ -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