summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2016-03-28 11:46:33 +0000
committerPavan Deolasee2016-10-18 10:04:34 +0000
commit7e07b342e410dbb961890345a87f287c6cad9af1 (patch)
tree5c8cd821310b9646d33ac833158ae2ce46efe144
parent1d22d51fc918d21c15121e71052edf8babb27f39 (diff)
Correctly use Postgres-XL instead of PostgreSQL for reporting "make" status
-rw-r--r--GNUmakefile.in10
-rw-r--r--Makefile6
2 files changed, 8 insertions, 8 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in
index f6ab57ef1c..52551a878b 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -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
diff --git a/Makefile b/Makefile
index 72e9c83733..be56038c59 100644
--- 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