From d6dac68cf467f2e9ea7f6da28f6fe1fd894e8476 Mon Sep 17 00:00:00 2001 From: hal9 Date: Wed, 11 Oct 2006 01:40:28 +0000 Subject: [PATCH] Apply patch from Neil McCalden to fix syntax issue. --- GNUmakefile.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index 2d62fd42..bbd626e4 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,6 +1,6 @@ # Note: Makefile is built automatically from Makefile.in # -# $Id: GNUmakefile.in,v 1.147 2006/09/13 01:25:16 hal9 Exp $ +# $Id: GNUmakefile.in,v 1.148 2006/09/26 10:57:58 hal9 Exp $ # # Written by and Copyright (C) 2001 - 2004 the SourceForge # Privoxy team. http://www.privoxy.org/ @@ -1187,7 +1187,7 @@ install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T fi ;\ $(ECHO) Installing configuration files to $(CONF_DEST);\ for i in $(CONFIGS); do \ - if [ "$$i" == "default.action" ] || [ "$$i" == "default.filter" ] || [ "$$i" == "standard.action" ]; then \ + if [ "$$i" = "default.action" ] || [ "$$i" = "default.filter" ] || [ "$$i" = "standard.action" ]; then \ $(RM) $(CONF_DEST)/$$i ;\ $(ECHO) Installing fresh $$i;\ $(INSTALL) $$INSTALL_CONF $$i $(CONF_DEST) || exit 1;\ @@ -1355,6 +1355,9 @@ coffee: ## end: # $Log: GNUmakefile.in,v $ +# Revision 1.148 2006/09/26 10:57:58 hal9 +# Including Karsten's patch to fix make create-snapshot. +# # Revision 1.147 2006/09/13 01:25:16 hal9 # Make sure install forces in new default.action, default.filter, and # standard.filter. These are privoxy files, not user files. -- 2.39.2