From e702a744b48bfe8db7b19ecdd62e171005a401b9 Mon Sep 17 00:00:00 2001 From: Colin Clark Date: Mon, 13 Nov 2017 10:41:19 +0000 Subject: [PATCH] Fix #542: About window shows old commit https://github.com/BestImageViewer/geeqie/issues/542 The old commit ID was being kept in autom4te.cache. This is not being cleared by "make distclean", and so the old ID continues to be used. Revised user docs show to use: sudo make uninstall; sudo make maintainer-clean; ./autogen.sh make -j; sudo make install --- README.md | 2 +- web/installing.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a70eabf6..05128c28 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ It is recommended to always use `git clone git://www.geeqie.org/geeqie.git` to However if you leave the folder intact, whenever new features or patches are available, execute: -`git pull; sudo make uninstall; sudo make distclean; ./autogen.sh; make -j; sudo make install` +`git pull; sudo make uninstall; sudo make maintainer-clean; ./autogen.sh; make -j; sudo make install` Only the changed sources are downloaded, which makes this a quick operation. diff --git a/web/installing.html b/web/installing.html index 25b8c97c..6150dfb0 100644 --- a/web/installing.html +++ b/web/installing.html @@ -52,7 +52,7 @@

However if you leave the folder intact, whenever new features or patches are available, execute:

- git pull; sudo make uninstall; sudo make distclean; ./autogen.sh; make -j<no. of cpu cores>; sudo make install + git pull; sudo make uninstall; sudo make maintainer-clean; ./autogen.sh; make -j<no. of cpu cores>; sudo make install

Only the changed sources are downloaded, which makes this a quick operation.

Your configuration file, history file and desktop files are not affected by this process.

-- 2.20.1