| Summary: | build problem due in configure.in | ||
|---|---|---|---|
| Product: | shared-mime-info | Reporter: | Matthew Gatto <mattgatto> |
| Component: | general | Assignee: | Jonathan Blandford <jrb> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | major | ||
| Priority: | high | ||
| Version: | unspecified | ||
| Hardware: | x86 (IA32) | ||
| OS: | Linux (All) | ||
| Whiteboard: | |||
| i915 platform: | i915 features: | ||
Fixed in CVS |
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.
I had to apply the following change to configure.in to get the shared-mime-info from CVS to build on FC2 or else I'd get a configure error about AC_SUBST not having the right amount of arguments: Index: configure.in =================================================================== RCS file: /cvs/mime/shared-mime-info/configure.in,v retrieving revision 1.31 diff -u -r1.31 configure.in --- configure.in 1 Sep 2004 19:33:15 -0000 1.31 +++ configure.in 2 Sep 2004 07:39:56 -0000 @@ -23,8 +23,8 @@ PKG_CHECK_MODULES(ALL, \ libxml-2.0 >= 2.4 \ glib-2.0 >= 2.0.0) -AC_SUBST (ALL_CFLAGS) -AC_SUBST (ALL_LIBS) +AC_SUBST(ALL_CFLAGS) +AC_SUBST(ALL_LIBS) dnl Use -Wall, etc if possible [