[svn-commits] tzafrir: tools/trunk r5082 - /tools/trunk/Makefile
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Oct 10 13:29:12 CDT 2008
Author: tzafrir
Date: Fri Oct 10 13:29:12 2008
New Revision: 5082
URL: http://svn.digium.com/view/dahdi?view=rev&rev=5082
Log:
Fix 'make config' for distros with no chkconfig and no update-rc.d .
This would cause the error on 'make config' for "unknown command dahdi",
and 'make -n config' would show that it tries to run "dahdi defaults 15 30"
Modified:
tools/trunk/Makefile
Modified: tools/trunk/Makefile
URL: http://svn.digium.com/view/dahdi/tools/trunk/Makefile?view=diff&rev=5082&r1=5081&r2=5082
==============================================================================
--- tools/trunk/Makefile (original)
+++ tools/trunk/Makefile Fri Oct 10 13:29:12 2008
@@ -55,7 +55,7 @@
ifneq (,$(CHKCONFIG))
ADD_INITD := $(CHKCONFIG) --add dahdi
else
- ifndef (,$(UPDATE_RCD))
+ ifneq (,$(UPDATE_RCD))
ADD_INITD := $(UPDATE_RCD) dahdi defaults 15 30
endif
endif
More information about the svn-commits
mailing list