From 372e8c07cf905b225226e34336a444d8382182f7 Mon Sep 17 00:00:00 2001 From: Thomas Thurman Date: Sat, 9 Mar 2013 21:27:19 +0000 Subject: [PATCH] Fixed the stopserver command to use the correct Makefile syntax --- pelican/tools/templates/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pelican/tools/templates/Makefile.in b/pelican/tools/templates/Makefile.in index 35c41bb7..784a53e4 100644 --- a/pelican/tools/templates/Makefile.in +++ b/pelican/tools/templates/Makefile.in @@ -56,9 +56,9 @@ devserver: $$(BASEDIR)/develop_server.sh restart stopserver: -_ kill -9 `cat pelican.pid` -_ kill -9 `cat srv.pid` -_ @echo 'Stopped Pelican and SimpleHTTPServer processes running in background. + kill -9 `cat pelican.pid` + kill -9 `cat srv.pid` + @echo 'Stopped Pelican and SimpleHTTPServer processes running in background.' publish: $$(PELICAN) $$(INPUTDIR) -o $$(OUTPUTDIR) -s $$(PUBLISHCONF) $$(PELICANOPTS)