[asterisk-commits] seanbright: branch 1.4 r197998 -	/branches/1.4/Makefile
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Fri May 29 13:14:16 CDT 2009
    
    
  
Author: seanbright
Date: Fri May 29 13:14:12 2009
New Revision: 197998
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=197998
Log:
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
Modified:
    branches/1.4/Makefile
Modified: branches/1.4/Makefile
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.4/Makefile?view=diff&rev=197998&r1=197997&r2=197998
==============================================================================
--- branches/1.4/Makefile (original)
+++ branches/1.4/Makefile Fri May 29 13:14:12 2009
@@ -676,7 +676,7 @@
 			$(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 \
    
    
More information about the asterisk-commits
mailing list