]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
core: AST_DEVMODE no longer affects ABI.
authorRichard Mudgett <rmudgett@digium.com>
Mon, 23 Jul 2018 17:21:44 +0000 (12:21 -0500)
committerRichard Mudgett <rmudgett@digium.com>
Mon, 23 Jul 2018 19:03:38 +0000 (14:03 -0500)
Remove AST_DEVMODE from the AST_BUILDOPTS list and the AST_BUILDOPTS_SUM
calculation as it no longer affects API/ABI compatibility.

Change-Id: Id5bd6dfade173a53b3a49f715586b86e3fb24acb

build_tools/make_buildopts_h

index c47d5082c00625003178172f41a6669eded13918..57df27dd46ec960480febaaccad7cf102608dda9 100755 (executable)
@@ -14,7 +14,8 @@ END
 if ${GREP} "AST_DEVMODE" makeopts | ${GREP} -q "yes"
 then
        echo "#define AST_DEVMODE 1"
-       BUILDOPTS="AST_DEVMODE"
+       # AST_DEVMODE is no longer an API/ABI affecting option so it no longer
+       # gets added to BUILDOPTS.
 fi
 
 TMP=`${GREP} -e "^MENUSELECT_CFLAGS" menuselect.makeopts | sed 's/MENUSELECT_CFLAGS\=//g' | sed 's/-D//g'`