From: Sean Bright Date: Fri, 29 May 2009 18:14:12 +0000 (+0000) Subject: Fix 'make config' target for Slackware. X-Git-Tag: 1.4.26-rc2~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be8d983874b314a8584c3728a52b8d2ec9c5ee7f;p=thirdparty%2Fasterisk.git Fix 'make config' target for Slackware. There was a missing semi-colon after the echo statement in the Makefile that was causing problems for some users. Fix suggested by reporter. (closes issue #15225) Reported by: pdavis git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@197998 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/Makefile b/Makefile index a163cc9295..e3bf71dd91 100644 --- a/Makefile +++ b/Makefile @@ -676,7 +676,7 @@ config: $(INSTALL) -m 755 contrib/init.d/rc.suse.asterisk $(DESTDIR)/etc/init.d/asterisk; \ if [ -z "$(DESTDIR)" ]; then /sbin/chkconfig --add asterisk; fi; \ elif [ -f /etc/slackware-version ]; then \ - echo "Slackware is not currently supported, although an init script does exist for it." \ + echo "Slackware is not currently supported, although an init script does exist for it."; \ else \ echo "We could not install init scripts for your distribution."; \ fi \