Closed
Bug 1282843
Opened 8 years ago
Closed 8 years ago
configure.py doesn't parse global autoconf options like --libdir
Categories
(Firefox Build System :: General, defect)
Tracking
(firefox49 fixed, firefox50 fixed, firefox51 fixed)
RESOLVED
FIXED
mozilla51
People
(Reporter: axs, Unassigned)
References
Details
Attachments
(1 file, 1 obsolete file)
736 bytes,
patch
|
glandium
:
review+
ritu
:
approval-mozilla-aurora+
ritu
:
approval-mozilla-beta+
|
Details | Diff | Splinter Review |
Starting with firefox-48.0_beta , configure.py now seems to parse all of the .mozconfig options before passing them through to ./old-configure; part of this parsing includes all of the options that ./old-configure normally accepts, as is specified in "@old_configure_options" from build/moz.configure/old.configure. However, not in this list are the standard options that every autotools package presents, such as those that define basic system install paths: --bindir, --libdir, --datadir, etc. etc. etc..
Although not all of these standard options are necessarily implemented, some of them (especially --libdir) need to be passed through on linux. I took a guess at which ones might be useful based on Makefile.in's throughout the codebase, and made up the attached patch to try and help with this issue.
Reporter | ||
Updated•8 years ago
|
Attachment #8765989 -
Flags: review?(mh+mozilla)
Updated•8 years ago
|
Attachment #8765989 -
Attachment is patch: true
Attachment #8765989 -
Attachment mime type: text/x-patch → text/plain
Comment 1•8 years ago
|
||
Comment on attachment 8765989 [details] [diff] [review]
add global autotools options to @old_configure_options
Review of attachment 8765989 [details] [diff] [review]:
-----------------------------------------------------------------
Please provide a commit message.
::: build/moz.configure/old.configure
@@ +154,4 @@
>
>
> @old_configure_options(
> + '--bindir',
Let's not add the ones that aren't used: bindir, libexecdir, mandir.
Attachment #8765989 -
Flags: review?(mh+mozilla)
Reporter | ||
Comment 2•8 years ago
|
||
Try2 -- comment added, extra options removed
Attachment #8765989 -
Attachment is obsolete: true
Attachment #8767718 -
Flags: review?(mh+mozilla)
Updated•8 years ago
|
Attachment #8767718 -
Flags: review?(mh+mozilla) → review+
Comment 3•8 years ago
|
||
Why is this path missing in tree? I guess distros (at least Fedora) needs that to build the package. Firefox is always installed to /usr/lib without this patch.
Flags: needinfo?(axs)
Reporter | ||
Comment 4•8 years ago
|
||
(In reply to Martin Stránský from comment #3)
> Why is this path missing in tree? I guess distros (at least Fedora) needs
> that to build the package. Firefox is always installed to /usr/lib without
> this patch.
I'm not exactly understanding your question as phrased -- I will take it to mean you don't understand the use-case where firefox should be built with a 'libdir' path that isn't the default /usr/lib ?
/usr/lib is not the de-facto native-abi installation path on all linux systems, many often install to /usr/lib64 for instance if they support multilib (that is, concurrent 64bit and 32bit) installations (while /usr/lib32 is the 32bit path).
Also, it is quite possible that someone may want to build firefox with --libdir=/opt or some other path. It often does not suffice to just use --prefix for these things, the other path overrides that autotools allows should also be exposed so that the codebase can be built appropriately.
Flags: needinfo?(axs)
Updated•8 years ago
|
Keywords: checkin-needed
Pushed by ryanvm@gmail.com:
https://hg.mozilla.org/integration/fx-team/rev/f5bfd9e3ebcf
Add ability to specify system paths to @old_configure_options. r=glandium
Keywords: checkin-needed
Comment 7•8 years ago
|
||
Comment on attachment 8767718 [details] [diff] [review]
Add path specifier options to @old_configure_options
Approval Request Comment
[Feature/regressing bug #]: regression from python configure
[User impact if declined]: Distros where /usr/lib64 is the library directory (e.g. Fedora, SuSE, etc.) can't build without going through hoops to support that directory. Most notably, that breaks finding system plugins.
[Describe test coverage new/current, TreeHerder]: n/a
[Risks and why]: Technically NPOTB: the patch only adds 3 supported flags to configure which aren't used for mozilla builds (if they were, the build would simply fail, because the flags aren't supported currently), and sends those flags to the still-existing autoconf-based configure.
[String/UUID change made/needed]: n/a
Attachment #8767718 -
Flags: approval-mozilla-beta?
Attachment #8767718 -
Flags: approval-mozilla-aurora?
Comment 8•8 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox51:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla51
Comment on attachment 8767718 [details] [diff] [review]
Add path specifier options to @old_configure_options
NPOTB, Aurora50+, Beta49+
Attachment #8767718 -
Flags: approval-mozilla-beta?
Attachment #8767718 -
Flags: approval-mozilla-beta+
Attachment #8767718 -
Flags: approval-mozilla-aurora?
Attachment #8767718 -
Flags: approval-mozilla-aurora+
status-firefox49:
--- → affected
status-firefox50:
--- → affected
Comment 10•8 years ago
|
||
bugherder uplift |
Comment 11•8 years ago
|
||
bugherder uplift |
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•