diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-25 04:26:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-25 04:26:21 +0000 |
commit | f3c1ae58f229637f47e44a328544f7578a1f5c21 (patch) | |
tree | 25933fae6f4b72153c755bfd76bd6be1ac3d8a41 | |
parent | 248a5a7257a47f3efaa7344b3f6dff2137e93379 (diff) | |
download | postgresql-f3c1ae58f229637f47e44a328544f7578a1f5c21.tar.gz postgresql-f3c1ae58f229637f47e44a328544f7578a1f5c21.zip |
Another Makefile fix for qnx patch.
-rw-r--r-- | src/pl/plpgsql/src/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pl/plpgsql/src/Makefile b/src/pl/plpgsql/src/Makefile index 077bd50ced4..9ac903f3d2f 100644 --- a/src/pl/plpgsql/src/Makefile +++ b/src/pl/plpgsql/src/Makefile @@ -2,7 +2,7 @@ # # Makefile for the plpgsql shared object # -# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Makefile,v 1.15 2001/05/25 04:24:33 momjian Exp $ +# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Makefile,v 1.16 2001/05/25 04:26:21 momjian Exp $ # #------------------------------------------------------------------------- @@ -21,13 +21,13 @@ override DLLLIBS := $(BE_DLLLIBS) $(DLLLIBS) OBJS = pl_parse.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o -ifeq ($(PORTNAME), qnx4) +ifneq ($(PORTNAME), qnx4) all: all-lib else all: - @echo "*****"; \ - echo "* PL/pgSQL was not built due to library manager problems."; \ - echo "*****" + @echo "*****" + @echo "* PL/pgSQL was not built due to library manager problems." + @echo "*****" endif # Shared library stuff |