pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: pkg/48224: x11/xscreensaver can't find GTK, GDK-Pixbuf on netbsd-5/i386



The following reply was made to PR pkg/48224; it has been noted by GNATS.

From: "John D. Baker" <jdbaker%mylinuxisp.com@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: 
Subject: Re: pkg/48224: x11/xscreensaver can't find GTK, GDK-Pixbuf on
 netbsd-5/i386
Date: Tue, 5 Nov 2013 01:21:49 -0600 (CST)

 On Tue, 5 Nov 2013, David Holland wrote:
 
 > Alternatively, you can patch like this:
 >
 > - $(MAKE) -C $$dir $@
 > + (cd $$dir && $(MAKE) $@)
 
 Yes, this works (and I think a more elegant solution).
 
 Patch in both places, in "Makefile.in":
 
 +--- Makefile.in.orig    2013-02-05 00:46:07.000000000 -0600
 ++++ Makefile.in 2013-11-05 01:15:16.000000000 -0600
 +@@ -19,8 +19,8 @@
 + 
 + TAR            = tar
 + 
 +-MAKE_SUBDIR  = for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit 5; done
 +-MAKE_SUBDIR2 = for dir in $(SUBDIRS2); do $(MAKE) -C $$dir $@ || exit 5; done
 ++MAKE_SUBDIR  = for dir in $(SUBDIRS); do (cd $$dir && $(MAKE) $@) || exit 5; 
done
 ++MAKE_SUBDIR2 = for dir in $(SUBDIRS2); do (cd $$dir && $(MAKE) $@) || exit 
5; done
 + 
 + default::
 +        @$(MAKE_SUBDIR)
 
 
 
 -- 
 |/"\ John D. Baker, KN5UKS               NetBSD     Darwin/MacOS X
 |\ / jdbaker[snail]mylinuxisp[flyspeck]com    OpenBSD            FreeBSD
 | X  No HTML/proprietary data in email.   BSD just sits there and works!
 |/ \ GPGkeyID:  D703 4A7E 479F 63F8 D3F4  BD99 9572 8F23 E4AD 1645
 


Home | Main Index | Thread Index | Old Index