From f478bd21eba9e3849e6944254ca74587a2ffeab8 Mon Sep 17 00:00:00 2001 From: oes Date: Fri, 23 Aug 2002 12:22:40 +0000 Subject: [PATCH] Added warning to broken install target --- GNUmakefile.in | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index d4757598..69f65018 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,6 +1,6 @@ # Note: Makefile is built automatically from Makefile.in # -# $Id: GNUmakefile.in,v 1.104.2.16 2002/08/14 16:43:27 hal9 Exp $ +# $Id: GNUmakefile.in,v 1.104.2.17 2002/08/16 03:19:34 hal9 Exp $ # # Written by and Copyright (C) 2001 the SourceForge # Privoxy team. http://www.privoxy.org/ @@ -854,7 +854,7 @@ webserver: tidy @cd doc/webserver; \ upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \ $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/; tar xvm 2>&1 | grep -v timestamp' - + @$(ECHO) Uploading pdf @cd doc/pdf;\ zip privoxy-pdf-docs *.pdf ;\ @@ -963,11 +963,23 @@ tags: $(SRCS) $(HDRS) etags $(SRCS) $(HDRS) install: all - # - # FIXME: This is a dirty hack to have an install target - # that works at least for some setups. This needs - # to be fixed! - # + @$(ECHO) "***************************************************"; \ + $(ECHO) "*** ***"; \ + $(ECHO) "*** WARNING ***"; \ + $(ECHO) "*** ***"; \ + $(ECHO) "*** The install target is very broken and ***"; \ + $(ECHO) "*** should not be used. For the time being, ***"; \ + $(ECHO) "*** run from the build dir, install manually, ***"; \ + $(ECHO) "*** or use a binary package. Sorry. ***"; \ + $(ECHO) "*** ***"; \ + $(ECHO) "***************************************************"; \ + $(ECHO) "Type \"yes i am sure\" if you are sure that you"; \ + $(ECHO) -n "really want to proceed with the broken install: "; \ + read answer; \ + if [ "$$answer" != "yes i am sure" ]; then exit 1; fi + + # FIXME! + $(STRIP_PROG) $(PROGRAM) $(INSTALL) $(INSTALL_D) $(SBIN_DEST) $(INSTALL) $(INSTALL_D) $(DEST)/user-manual @@ -995,6 +1007,10 @@ coffee: ## end: # $Log: GNUmakefile.in,v $ +# Revision 1.104.2.17 2002/08/16 03:19:34 hal9 +# More (minor) cleanup of html before pdf processing to make some relative +# links work as pdf -> pdf. Upload pdf as zip archive now. +# # Revision 1.104.2.16 2002/08/14 16:43:27 hal9 # Added pdf docs to make webserver target. # -- 2.49.0