diff --git a/Makefile.in b/Makefile.in index 541ae099..eb768dd7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -33,6 +33,7 @@ INSTALL_OPTS=@INSTALL_OPTS@ DATAROOTDIR=@datarootdir@ CP=@CP@ +PERL=@PERL@ none: @echo "Please supply a command line argument (i.e. 'make all'). Other targets are:" @@ -53,6 +54,9 @@ all: @echo " make install" @echo " - This installs the main program and HTML files" @echo "" + @echo " make fullinstall" + @echo " - This installs the main program, runlevel scripts, config and HTML files" + @echo "" @echo "Enjoy." @echo "" @@ -172,7 +176,10 @@ install-unstripped: fullinstall: install install-webconf install-config install-init + $(PERL) summary fullinstall @echo "" @echo "*** Main program, Scripts and HTML files installed ***" @echo "" + @echo "Enjoy." + @echo "" diff --git a/summary.in b/summary.in index 4e1f4b16..43b42424 100644 --- a/summary.in +++ b/summary.in @@ -46,14 +46,15 @@ printf (" RRD Files stored in: %s\n","@PERFDATA_DIR@"); printf (" process_perfdata.pl Logfile: %s\n","@PERFDATA_LOG@"); printf (" Perfdata files (NPCD) stored in: %s\n","@PERFDATA_SPOOL_DIR@"); printf ("\n"); -printf (" Web Interface Options:"); +printf (" Web Interface Options:\n"); printf (" ------------------------- -------------------\n"); printf (" HTML URL: %s\n","http://localhost@BASE_URL@"); printf (" Apache Config File: %s\n","@HTTPD_CONF@/@PKG_NAME@.conf"); +if( $#ARGV == -1){ printf ("\n\n"); printf (" Review the options above for accuracy. If they look okay,\n"); printf (" type 'make all' to compile.\n"); - +} if($conf{USE_RRDs} == 0){ print "\n\n"; print " WARNING: The RRDs Perl Modules are not found on your system\n";