After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 734563 - Fails to install due to typo in modules/input/Makefile.am
Fails to install due to typo in modules/input/Makefile.am
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Backend: Win32
2.24.x
Other Windows
: Normal blocker
: ---
Assigned To: gtk-win32 maintainers
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2014-08-09 17:12 UTC by John Lindgren
Modified: 2014-08-10 11:58 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description John Lindgren 2014-08-09 17:12:51 UTC
Commit 12fe6a9a1ad6 (fix for bug #703789) introduced a typo in input/modules/Makefile.am.  On line 206, there is an extra slash in "$(DESTDIR)/$(bindir)", which should be simply "$(DESTDIR)$(bindir)", since $(bindir) already contains a leading slash.  The resulting path then has two leading slashes "//", which is okay on Linux but causes trouble for MinGW.

make[2]: Entering directory `/C/src/gtk+-2.24.24/modules/input'
/bin/sh /C/src/gtk+-2.24.24/install-sh -d /C/GTK/etc/gtk-2.0
/C/GTK/bin/gtk-query-immodules-2.0 > /C/GTK/lib/gtk-2.0/2.10.0/immodules.cache
/bin/sh: line 4: //C/GTK/bin/gtk-query-immodules-2.0: No such file or directory
make[2]: *** [install-data-hook] Error 127
make[2]: Leaving directory `/C/src/gtk+-2.24.24/modules/input'