1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Clean up AIX makefile to recognize subversions of AIX 4.1 correctly.

This patch is Peter E's, but I'm applying it on his behalf so it'll get
into 7.1RC3 tonight (I'm guessing Peter went to bed already).
This commit is contained in:
Tom Lane 2001-04-04 22:57:45 +00:00
parent 8b588a19b4
commit 011f1e3169

View File

@ -11,7 +11,7 @@ ifneq ($(GCC), yes)
ifeq ($(host_os), aix3.2.5) ifeq ($(host_os), aix3.2.5)
LDFLAGS_SL = -e _nostart LDFLAGS_SL = -e _nostart
endif endif
ifeq ($(host_os), aix4.1) ifneq (,$(findstring aix4.1, $(host_os)))
LDFLAGS_SL = -bnoentry LDFLAGS_SL = -bnoentry
endif endif
endif endif
@ -29,7 +29,7 @@ $(POSTGRES_IMP):
ifeq ($(host_os), aix3.2.5) ifeq ($(host_os), aix3.2.5)
$(MKLDEXPORT) postgres $(bindir) > $@ $(MKLDEXPORT) postgres $(bindir) > $@
else else
ifeq ($(host_os), aix4.1) ifneq (,$(findstring aix4.1, $(host_os)))
$(MKLDEXPORT) postgres $(bindir) > $@ $(MKLDEXPORT) postgres $(bindir) > $@
else else
$(MKLDEXPORT) postgres . > $@ $(MKLDEXPORT) postgres . > $@