[Asterisk-cvs] asterisk Makefile,1.182,1.183
russell at lists.digium.com
russell at lists.digium.com
Mon Jul 18 14:27:22 CDT 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv11053
Modified Files:
Makefile
Log Message:
also include /etc/asterisk.makeopts, but have file in home directory override
it if present
Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk/Makefile,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -d -r1.182 -r1.183
--- Makefile 18 Jul 2005 04:22:08 -0000 1.182
+++ Makefile 18 Jul 2005 18:34:52 -0000 1.183
@@ -121,6 +121,12 @@
# If the file .asterisk.makeopts is present in your home directory, you can
# include all of your favorite Makefile options so that every time you download
# a new version of Asterisk, you don't have to edit the makefile to set them.
+# The file, /etc/asterisk.makeopts will also be included, but can be overridden
+# by the file in your home directory.
+
+ifneq ($(wildcard /etc/asterisk.makeopts),)
+include /etc/asterisk.makeopts
+endif
ifneq ($(wildcard ~/.asterisk.makeopts),)
include ~/.asterisk.makeopts
More information about the svn-commits
mailing list