Summary: | DIST_SUBDIRS should never appear in a conditional | ||
---|---|---|---|
Product: | fontconfig | Reporter: | Quentin "Sardem FF7" Glidic <sardemff7+freedesktop> |
Component: | library | Assignee: | fontconfig-bugs |
Status: | RESOLVED FIXED | QA Contact: | Behdad Esfahbod <freedesktop> |
Severity: | trivial | ||
Priority: | medium | CC: | akira |
Version: | unspecified | ||
Hardware: | Other | ||
OS: | All | ||
Whiteboard: | |||
i915 platform: | i915 features: | ||
Attachments: | Patch to remove DIST_SUBDIRS usage |
Hmm, that looks like enforcing looking up doc dir when make dist, even if --disable-doc is set. but that change won't do that way and has to re-configure with --enable-doc. Of course it has to look into doc when make dist, otherwise the Makefile.in in doc would not be generated and ./configure would fail. In the current Makefile.am, it does the same, but assuming DIST_SUBDIRS == SUBDIRS, which is wrong because automake will automatically add conditional SUBDIRS in DIST_SUBDIRS. There is no behaviour change in this patch at all. Thanks. pushed to master. |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
Created attachment 74225 [details] Patch to remove DIST_SUBDIRS usage Conditional SUBDIRS are automagically added to DIST_SUBDIRS, which should never appear for in a conditional on its own.