[PATCH] qgit: add some installation instruction
From: Marco Costalba <hidden>
Date: 2016-06-15 22:42:18
Subsystem:
the rest · Maintainer:
Linus Torvalds
With this I would start to post possible patches for list review. I am planning to post only a very limited number of patches that could be interesting or that modify someone else work (like in this case, the new Pavel build system). Is not my intention to add noise to the list, so I will try to keep the patches to the minimum. In any case, please, Junio, feel free to express any concern about this and I will stop as soon as started! Thanks Marco -- >8 -- Document how to strip debug information and better explaing when to reconfigure the build environment. Signed-off-by: Marco Costalba <redacted> ---
diff --git a/README b/README
index 0869c0c..f32dce4 100644
--- a/README
+++ b/README@@ -23,10 +23,11 @@ which is used to locate Qt. Version 0.15 also work. To compile qgit, unpack the tar file (you probably have done it -already), run "./configure", "make" and "make install". You may need to -get root permissions for the later. You can run "configure" with full -path from another empty directory if you want qgit to be compiled in a -separate directory. +already), run "./configure", "make" and "make install" or "make install-strip" +to have debug information removed and install a much smaller bin. +You may need to get root permissions for the later. You can run "configure" +with full path from another empty directory if you want qgit to be compiled +in a separate directory. If there is another qgit executable in PATH, "make install" will overwrite it. Otherwise, qgit will be installed in /usr/local/bin. You
@@ -41,6 +42,8 @@ Automake, preferably the latest versions Only in case you clone the public qgit repository you may need to run "autoreconf -i" the first time to create the ./configure file. Do not need to run it on a released tarball. +You may need to run "autoreconf -i" also when pulling revisions that modify +some build system file, as "configure.ac". Command line arguments
---