pari: branch aadk r648 - /branches/aadk/Makefile
asterisk-gui-commits at lists.digium.com
asterisk-gui-commits at lists.digium.com
Wed Apr 11 15:19:03 MST 2007
Author: pari
Date: Wed Apr 11 17:19:02 2007
New Revision: 648
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=648
Log:
Fix: 'Bob Peret' pointed that make install is putting network.sh in /etc/asterisk/scripts and them make checkconfig is looking for it in /etc/asterisk
Modified:
branches/aadk/Makefile
Modified: branches/aadk/Makefile
URL: http://svn.digium.com/view/asterisk-gui/branches/aadk/Makefile?view=diff&rev=648&r1=647&r2=648
==============================================================================
--- branches/aadk/Makefile (original)
+++ branches/aadk/Makefile Wed Apr 11 17:19:02 2007
@@ -173,13 +173,23 @@
exit 1; \
fi
@echo -n "Checking for the network configuration script: "
- @if [ -f $(ASTETCDIR)/networking.sh ]; then \
+ @if [ -f $(ASTETCDIR)/scripts/networking.sh ]; then \
echo "OK"; \
else \
echo "NOT FOUND"; \
echo " -- Please Run 'make install' in the GUI Source Directory" ; \
exit 1; \
fi
+ @echo -n "Checking for the backend script for graph data: "
+ @if [ -f $(ASTETCDIR)/scripts/graphs.sh ]; then \
+ echo "OK"; \
+ else \
+ echo "NOT FOUND"; \
+ echo " -- Please Run 'make install' in the GUI Source Directory" ; \
+ exit 1; \
+ fi
+
+
@echo -n "Checking for the networking.conf: "
@if [ -f $(ASTETCDIR)/networking.conf ]; then \
echo "OK"; \
More information about the asterisk-gui-commits
mailing list