1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +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

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.26 2006/07/21 00:24:04 tgl Exp $
# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.27 2007/02/09 15:56:00 petere Exp $
subdir = src/pl/plpython
top_builddir = ../../..
@ -17,15 +17,15 @@ endif
# and we have to remove -lpython from the link since we are building our own
ifeq ($(PORTNAME), win32)
shared_libpython = yes
python_includespec := $(subst \,/,$(python_includespec))
override python_libspec :=
python_includespec = $(subst \,/,$(python_includespec))
override python_libspec =
endif
# Darwin (OS X) has its own ideas about how to do this.
ifeq ($(PORTNAME), darwin)
shared_libpython = yes
override python_libspec := -framework Python
override python_additional_libs :=
override python_libspec = -framework Python
override python_additional_libs =
endif
# If we don't have a shared library and the platform doesn't allow it