From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paulius Zaleckas Date: Tue, 06 Apr 2010 22:24:12 +0300 Subject: [Buildroot] [git commit master] matchbox: convert to autotools, fix build with start-notification, libxft In-Reply-To: <4BBA5521.40900@gmail.com> References: <20100405092238.EDD8888D31@busybox.osuosl.org> <4BBA5521.40900@gmail.com> Message-ID: <4BBB8A5C.80403@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net On 04/06/2010 12:24 AM, Paulius Zaleckas wrote: > On 04/05/2010 11:47 AM, Will Wagner wrote: >> >> commit: >> http://git.buildroot.net/buildroot/commit/?id=f94830d0e5a409b2e2dc30a4e002c180fe09ec4e >> >> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master >> >> Signed-off-by: Will Wagner >> Signed-off-by: Peter Korsgaard > > There is one more problem... > matchbox-desktop fails to load its modules. > Modules are installed to /usr/lib/matchbox/desktop > but it doesn't try to load them from here. > > strace output: > write(1, "matchbox-desktop: loading /usr/li"..., 63) = 63 > open("/usr/lib/tasks.so", O_RDONLY) = -1 ENOENT (No such file or directory) > open("/home/paulius/buildroot/output/build/staging_dir/usr/lib/tasks.so", O_RDONLY) > = -1 ENOENT (No such file or directory) > open("/lib/tasks.so", O_RDONLY) = -1 ENOENT (No such file or directory) > open("/lib/tasks.so", O_RDONLY) = -1 ENOENT (No such file or directory) > open("/usr/lib/tasks.so", O_RDONLY) = -1 ENOENT (No such file or directory) > open("/usr/X11R6/lib/tasks.so", O_RDONLY) = -1 ENOENT (No such file or > directory) > write(2, "File not found"..., 14) = 14 > write(1, "matchbox-desktop: loading /usr/li"..., 68) = 68 > open("/usr/lib/dotdesktop.so", O_RDONLY) = -1 ENOENT (No such file or > directory) > open("/home/paulius/buildroot/output/build/staging_dir/usr/lib/dotdesktop.so", > O_RDONLY) = -1 ENOENT (No such file or directory) > open("/lib/dotdesktop.so", O_RDONLY) = -1 ENOENT (No such file or > directory) > open("/lib/dotdesktop.so", O_RDONLY) = -1 ENOENT (No such file or > directory) > open("/usr/lib/dotdesktop.so", O_RDONLY) = -1 ENOENT (No such file or > directory) > open("/usr/X11R6/lib/dotdesktop.so", O_RDONLY) = -1 ENOENT (No such file > or directory) > write(2, "File not found"..., 14) = 14 > write(2, "matchbox-desktop: failed to load "..., 51) = 51 I have found the reason it worked earlier: -$(TARGET_DIR)/usr/bin/$(MATCHBOX_DP_BIN): $(STAGING_DIR)/usr/bin/$(MATCHBOX_DP_BIN) - cp -dpf $(STAGING_DIR)/usr/bin/$(MATCHBOX_DP_BIN) $(TARGET_DIR)/usr/bin/ - -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/bin/$(MATCHBOX_DP_BIN) - cp -dpf $(STAGING_DIR)/usr/lib/dotdesktop.so $(TARGET_DIR)/usr/lib/ - -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/dotdesktop.so - cp -dpf $(STAGING_DIR)/usr/lib/simplefilebrowser.so $(TARGET_DIR)/usr/lib/ - -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/simplefilebrowser.so - cp -dpf $(STAGING_DIR)/usr/lib/tasks.so $(TARGET_DIR)/usr/lib/ - -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/tasks.so It was installing these plug-ins to /usr/lib and now they are installed to /usr/lib/matchbox/desktop >> Patch is too large, so refusing to show it >> _______________________________________________ >> buildroot mailing list >> buildroot at busybox.net >> http://lists.busybox.net/mailman/listinfo/buildroot >> >