From 206870b8091d05f6045ae4e675653a4eceeef63f Mon Sep 17 00:00:00 2001 From: "Leigh B. Stoller" Date: Thu, 14 Feb 2002 00:46:49 +0000 Subject: [PATCH] Fix up Makefile so that names with $ in them are not messed up when installed. --- www/GNUmakefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/GNUmakefile.in b/www/GNUmakefile.in index 232e6628f..35ec6c410 100644 --- a/www/GNUmakefile.in +++ b/www/GNUmakefile.in @@ -88,4 +88,4 @@ install: $(addprefix $(INSTALL_WWWDIR)/, $(ALLFILES)) \ $(INSTALL_WWWDIR)/%: % @echo "Installing $<" -mkdir -p $(patsubst %/,%,$(dir $@)) - $(INSTALL_DATA) $< $@ + $(INSTALL_DATA) $(subst $$,\$$,$<) $(subst $$,\$$,$@) -- GitLab