]> granicus.if.org Git - gc/commitdiff
Update README to use autogen.sh on build from the source repository
authorIvan Maidanski <ivmai@mail.ru>
Thu, 17 Nov 2016 06:38:55 +0000 (09:38 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Sun, 27 Nov 2016 06:33:40 +0000 (09:33 +0300)
* README.md (Installation and Portability): Replace autoreconf (and
automake) invocation with autogen.sh one; pass -j option to make.

README.md

index d257d581e8deb7735179341eec506ee9aff247b1..433b6097bda2c2d3594377007325364bf70a9f08 100644 (file)
--- a/README.md
+++ b/README.md
@@ -179,15 +179,14 @@ libatomic_ops source repository as well) could look like:
     git clone git://github.com/ivmai/bdwgc.git
     cd bdwgc
     git clone git://github.com/ivmai/libatomic_ops.git
-    autoreconf -vif
-    automake --add-missing
+    ./autogen.sh
     ./configure
-    make
+    make -j
     make check
 
 If you are getting "syntax error near unexpected token ATOMIC_OPS" during
 configure execution, this means pkg.m4 cannot be found, most probably
-you should run `pkg-config` once before autoreconf.
+you should run `pkg-config` once before running `./autogen.sh` (autoreconf).
 
 Below we focus on the collector build using classic makefile.
 For the Makefile.direct-based process, typing `make test` instead of `make`