From 52faf1bb2b30120611ea6bc0794eeee7a4d7bc25 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Thu, 6 Jun 2002 15:15:06 +0000 Subject: [PATCH] r1552: When installing without a manpage, just warn the user instead of aborting (suggested by Simon Britnell). --- ROX-Filer/AppInfo.xml | 2 +- ROX-Filer/Help/Changes | 5 +++++ install.sh | 9 +++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ROX-Filer/AppInfo.xml b/ROX-Filer/AppInfo.xml index 3589fd76..5f520ea5 100644 --- a/ROX-Filer/AppInfo.xml +++ b/ROX-Filer/AppInfo.xml @@ -6,7 +6,7 @@ Een grafisch bestandsbeheerprogramma File manager - 1.3.1 (30-May-2002) + 1.3.2 PREVIEW Thomas Leonard and others GNU General Public License http://rox.sourceforge.net diff --git a/ROX-Filer/Help/Changes b/ROX-Filer/Help/Changes index 496aa143..4ed7ecbb 100644 --- a/ROX-Filer/Help/Changes +++ b/ROX-Filer/Help/Changes @@ -2,6 +2,11 @@ A RISC OS-like filer for X by Thomas Leonard +06-Jun-2002 +~~~~~~~~~~~ +When installing without a manpage, just warn the user instead of aborting +(suggested by Simon Britnell). + 01-Jun-2002 ~~~~~~~~~~~ Code tidying (Bernard Jungen). diff --git a/install.sh b/install.sh index 7df9799d..a17b007b 100755 --- a/install.sh +++ b/install.sh @@ -137,6 +137,15 @@ MIME-info rules will be: $MIMEINFO EOF +if [ ! -f rox.1 ]; then + echo '*** The ROX-Filer manpage (rox.1) is missing.' + echo '*** It can be created from Manual.xml by running' + echo "*** 'make' in the ROX-Filer/src/Docs directory." + echo '*** The daily CVS snapshots have it ready-built' + echo + MANDIR="" +fi + if [ -n "$MANDIR" ]; then echo "The manual pages will be:" echo " $MANDIR/man1/rox.1" -- 2.11.4.GIT