summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2016-10-01 17:45:16 +0000
committerTom Lane2016-10-01 17:45:16 +0000
commitea046f08d1bcee56c3bedfa16a05c38a0515b41d (patch)
tree2654804b7d6b4c251a937e9d0d37bf238ad9b319
parent7107d58ec5a3c45967e77525809612a5f89b97f3 (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: <[email protected]>
-rw-r--r--src/Makefile.shlib5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index de93f41639..f64eb4d9c5 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
#