Joe Peterson
2009-Sep-21 16:18 UTC
[PATCH] btrfs-progs: remove hard-coding of "gcc" and "make" from Makefile
Here''s a simple patch to replace "gcc" with "$(CC)" and "make" with "$(MAKE)". This is required, for example, for Gentoo Linux ebuilds, and it also eliminates a "jobserver unavailable" warning (make-related). -Joe
Premysl Hruby
2009-Sep-21 18:25 UTC
Re: [PATCH] btrfs-progs: remove hard-coding of "gcc" and "make" from Makefile
Hi On (21/09/09 10:18), Joe Peterson wrote:> Date: Mon, 21 Sep 2009 10:18:53 -0600 > From: Joe Peterson <joe@skyrush.com> > To: Btrfs Development List <linux-btrfs@vger.kernel.org> > Subject: [PATCH] btrfs-progs: remove hard-coding of "gcc" and "make" from > Makefile > User-Agent: Thunderbird 2.0.0.23 (X11/20090920) > List-ID: <linux-btrfs.vger.kernel.org>BTW:> > manpages: > - cd man; make > + cd man; $(MAKE)=> $(MAKE) -C man> > install-man: > - cd man; make install > + cd man; $(MAKE) install=> $(MAKE) -C man install> > clean : > rm -f $(progs) cscope.out *.o .*.d btrfs-convert > - cd man; make clean > + cd man; $(MAKE) clean=> $(MAKE) clean -- Premysl "Anydot" Hruby, http://www.redrum.cz/ - I''m a signature virus. Please add me to your signature and help me spread! -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html