[svn-commits] twilson: branch 1.0 r437 - /branches/1.0/Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Dec 10 15:54:50 CST 2008


Author: twilson
Date: Wed Dec 10 15:54:49 2008
New Revision: 437

URL: http://svn.digium.com/view/menuselect?view=rev&rev=437
Log:
Make menuselect stop executing configure when running "make clean"

(closes issue #13869)
Reported by: oej
Patches: 
      menuselect_makefile.diff.txt uploaded by otherwiseguy (license 396)
Tested by: putnopvut, otherwiseguy

Modified:
    branches/1.0/Makefile

Modified: branches/1.0/Makefile
URL: http://svn.digium.com/view/menuselect/branches/1.0/Makefile?view=diff&rev=437&r1=436&r2=437
==============================================================================
--- branches/1.0/Makefile (original)
+++ branches/1.0/Makefile Wed Dec 10 15:54:49 2008
@@ -11,8 +11,12 @@
 # the GNU General Public License
 #
 
-# read local makeopts settings
--include makeopts
+# even though we could use '-include makeopts' here, use a wildcard
+# lookup anyway, so that make won't try to build makeopts if it doesn't
+# exist (other rules will force it to be built if needed)
+ifneq ($(wildcard makeopts),)
+  include makeopts
+endif
 
 .PHONY: clean dist-clean distclean
 




More information about the svn-commits mailing list