From 1e5a7aac877f2b5d105d8cb291b107217b140632 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Tue, 25 Dec 2012 19:13:55 +0100 Subject: Makefiles: Correctly quote sed expressions Now the Makefiles support spaces in "$sysconfdir", which isn't uncommon for Cygwin for example, when $HOME contains whitespaces ("/home/User Name") and ngIRCd is installed into the user home ("./configure --prefix=$HOME"). --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/Makefile.am b/doc/Makefile.am index cd51d7fe..2b9b3aab 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -11,7 +11,7 @@ .tmpl: $(AM_V_GEN)sed \ - -e s@:ETCDIR:@${sysconfdir}@ \ + -e "s@:ETCDIR:@${sysconfdir}@" \ <$< >$@ SUFFIXES = .tmpl -- cgit 1.4.1