Hi, if the configure script of hicolor-icon-theme-0.10 is regenerated with autoconf >= 2.60 and configure is run without --datadir argument, configure will print the following:
configure: creating ./config.status config.status: creating Makefile config.status: WARNING: Makefile.in seems to ignore the --datarootdir setting The attached patch fixes that (without breaking compatibility with earlier autoconf versions). Note that autoconf 2.60 temporarily checks for missing datarootdir and expands datadir instead, but it might stop doing that in the future. Andreas Hanke -- "Feel free" - 10 GB Mailbox, 100 FreeSMS/Monat ... Jetzt GMX TopMail testen: www.gmx.net/de/go/mailfooter/topmail-out
--- Makefile.in +++ Makefile.in @@ -1,6 +1,7 @@ PACKAGE = @PACKAGE_TARNAME@ VERSION = @PACKAGE_VERSION@ prefix = @prefix@ +datarootdir = @datarootdir@ datadir = @datadir@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@
_______________________________________________ xdg mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/xdg
