summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-10-01 13:45:16 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-10-01 13:45:23 -0400
commit581f431f7be3c335f11dfd29a2498ad96d8a08ce (patch)
tree87340489c68670e77f35e9662beb0355bcff611a
parent68fb75e103e78478ef45a71e1a25055751e789f2 (diff)
Fix misstatement in comment in Makefile.shlib.
There is no need for "all: all-lib" to be placed before inclusion of Makefile.shlib. Makefile.global is what ensures that "all" is the default target, and we already document that that has to be included first. Per comment from Pavel Raiskup. Discussion: <1925924.izSMJEZO3x@unused-4-107.brq.redhat.com>
-rw-r--r--src/Makefile.shlib5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index 924d21f443c..5b6d77d40aa 100644
--- a/src/Makefile.shlib
+++ b/src/Makefile.shlib
@@ -47,9 +47,8 @@
# clean-lib delete the static and shared libraries from the build dir
# maintainer-clean-lib delete .def files built for win32
#
-# Since `all-lib' is the first rule in this file you probably want to
-# have the `all' target before including this file. In the most simple
-# case it would look like this:
+# Typically you would add `all-lib' to the `all' target so that `make all'
+# builds the libraries. In the most simple case it would look like this:
#
# all: all-lib
#