Correctly use Postgres-XL instead of PostgreSQL for reporting "make" status
authorPavan Deolasee <[email protected]>
Mon, 28 Mar 2016 11:46:33 +0000 (17:16 +0530)
committerPavan Deolasee <[email protected]>
Mon, 28 Mar 2016 11:46:33 +0000 (17:16 +0530)
GNUmakefile.in
Makefile

index f6ab57ef1c82f85e94a1c09271944bc9db5f24fe..52551a878be84f9d600e81595ed177a911980206 100644 (file)
@@ -1,5 +1,5 @@
 #
-# PostgreSQL top level makefile
+# Postgres-XL top level makefile
 #
 # GNUmakefile.in
 #
@@ -11,14 +11,14 @@ include $(top_builddir)/src/Makefile.global
 $(call recurse,all install,src config)
 
 all:
-       +@echo "All of PostgreSQL successfully made. Ready to install."
+       +@echo "All of Postgres-XL successfully made. Ready to install."
 
 docs:
        $(MAKE) -C doc all
 
 $(call recurse,world,doc src config contrib,all)
 world:
-       +@echo "PostgreSQL, contrib, and documentation successfully made. Ready to install."
+       +@echo "Postgres-XL, contrib, and documentation successfully made. Ready to install."
 
 # build src/ before contrib/
 world-contrib-recurse: world-src-recurse
@@ -27,14 +27,14 @@ html man:
        $(MAKE) -C doc $@
 
 install:
-       +@echo "PostgreSQL installation complete."
+       +@echo "Postgres-XL installation complete."
 
 install-docs:
        $(MAKE) -C doc install
 
 $(call recurse,install-world,doc src config contrib,install)
 install-world:
-       +@echo "PostgreSQL, contrib, and documentation installation complete."
+       +@echo "Postgres-XL, contrib, and documentation installation complete."
 
 # build src/ before contrib/
 install-world-contrib-recurse: install-world-src-recurse
index 72e9c837330401969c10a37fb45395d260bf2894..be56038c594bf968d86456216f8a3759850def6c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# The PostgreSQL make files exploit features of GNU make that other
+# The Postgres-XL make files exploit features of GNU make that other
 # makes do not have. Because it is a common mistake for users to try
 # to build Postgres with a different make, we have this make file
 # that, as a service, will look for a GNU make and invoke it, or show
@@ -6,7 +6,7 @@
 
 # If the user were using GNU make now, this file would not get used
 # because GNU make uses a make file named "GNUmakefile" in preference
-# to "Makefile" if it exists. PostgreSQL is shipped with a
+# to "Makefile" if it exists. Postgres-XL is shipped with a
 # "GNUmakefile". If the user hasn't run the configure script yet, the
 # GNUmakefile won't exist yet, so we catch that case as well.
 
@@ -31,6 +31,6 @@ all check install installdirs installcheck installcheck-parallel uninstall clean
           echo "Using GNU make found at $${GMAKE}"; \
           $${GMAKE} $@ ; \
         else \
-          echo "You must use GNU make to build PostgreSQL." ; \
+          echo "You must use GNU make to build Postgres-XL." ; \
           false; \
         fi