From: Sean Bright Date: Fri, 29 May 2009 18:15:15 +0000 (+0000) Subject: Merged revisions 197998 via svnmerge from X-Git-Tag: 11.0.0-beta1~4776 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87b1997de9d85caab1b9ab5ae9d12e793d8b8925;p=thirdparty%2Fasterisk.git Merged revisions 197998 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r197998 | seanbright | 2009-05-29 14:14:12 -0400 (Fri, 29 May 2009) | 8 lines 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/trunk@198000 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/Makefile b/Makefile index f0eca07249..326090bc01 100644 --- a/Makefile +++ b/Makefile @@ -830,7 +830,7 @@ config: cat contrib/init.d/rc.archlinux.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)/etc/rc.d/asterisk ;\ chmod 755 $(DESTDIR)/etc/rc.d/asterisk;\ 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 \