[asterisk-bugs] [Asterisk 0014137]: menuselect sets defaults too late
Asterisk Bug Tracker
noreply at bugs.digium.com
Thu Feb 12 10:17:45 CST 2009
A NOTE has been added to this issue.
======================================================================
http://bugs.digium.com/view.php?id=14137
======================================================================
Reported By: jnemeth
Assigned To: jpeeler
======================================================================
Project: Asterisk
Issue ID: 14137
Category: Utilities/General
Reproducibility: always
Severity: minor
Priority: normal
Status: closed
Asterisk Version: SVN
Regression: No
SVN Branch (only for SVN checkouts, not tarball releases): trunk
SVN Revision (number only!): 421
Request Review:
Resolution: fixed
Fixed in Version:
======================================================================
Date Submitted: 2008-12-25 05:17 CST
Last Modified: 2009-02-12 10:17 CST
======================================================================
Summary: menuselect sets defaults too late
Description:
The main Makefile contains the following target (which is called at
the start of the all target):
menuselect.makeopts: menuselect/menuselect menuselect-tree makeopts
menuselect/menuselect --check-deps menuselect.makeopts
$(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
The purpose of this target is to allow the user to have
/etc/asterisk.makeopts and/or ~/.asterisk.makeopts to have your options set
for you (i.e. to easily set the same options when upgrading as documented
in "Build Process (module selection)" section of UPGRADE-1.4.txt; however,
it doesn't work.
The bug is in menuselect/menuselect.c. Its main() function contains
the following:
...
1414 for (x = 1; x < argc; x++) {
1415 if (!strcmp(argv[x], "--check-deps"))
1416 check_deps = 1;
1417 else {
1418 res = parse_existing_config(argv[x]);
1419 if (!res && !strcasecmp(argv[x], OUTPUT_MAKEOPTS_DEFAULT))
1420 existing_config = 1;
1421 res = 0;
1422 }
1423 }
...
1430 if (!existing_config)
1431 process_defaults();
1432 else if (check_deps)
1433 res = sanity_check();
...
The loop starting at 1414 processes the arguments to menuselect. Starting
at 1418 it processes things that are files. At 1419 if menuselect.makeopts
is seen and successfully processed then it sets the existing_config flag.
The first time that the menuselect.makeopts target of the main Makefile is
called, the menuselect.makeopts file does not exist. However, if
/etc/asterisk.makeopts or ~/.asterisk.makeopts does, then it will be
processed. If you use a negative member to flip an option from its default
(i.e. MENUSELECT_PBX=-pbx_gtkconsole) this will happen. However, because
the existing_config flag hasn't been set then down in line 1431 all options
will be set to their default negating the effect of the options that you
set. menuselect will then write out a menuselect.makeopts containing all
the default options.
If you then do "make menuselect.makeopts" a second time, it would
work because menuselect.makeopts exists so the existing_config flag gets
set.
======================================================================
----------------------------------------------------------------------
(0099998) svnbot (reporter) - 2009-02-12 10:17
http://bugs.digium.com/view.php?id=14137#c99998
----------------------------------------------------------------------
Repository: menuselect
Revision: 471
U trunk/menuselect.c
------------------------------------------------------------------------
r471 | russell | 2009-02-11 09:11:17 -0600 (Wed, 11 Feb 2009) | 9 lines
Revert rev 468. This caused a regression.
This change assumed that the makeopts files in /etc/or ~/ were full
makeopts files.
For example, if you had a makeopts file in ~/ that only had one line to
ensure
that you always built with DEBUG_THREADS enabled, it would no longer work,
because
the menuselect sanity check would freak out.
(issue http://bugs.digium.com/view.php?id=14137)
------------------------------------------------------------------------
http://svn.digium.com/view/menuselect?view=rev&revision=471
Issue History
Date Modified Username Field Change
======================================================================
2009-02-12 10:17 svnbot Checkin
2009-02-12 10:17 svnbot Note Added: 0099998
======================================================================
More information about the asterisk-bugs
mailing list