From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Ngis8-0001aF-9D for garchives@archives.gentoo.org; Sun, 14 Feb 2010 18:07:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97C2AE0785; Sun, 14 Feb 2010 18:07:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 75A53E0785 for ; Sun, 14 Feb 2010 18:07:07 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id A105F1B43B3 for ; Sun, 14 Feb 2010 18:07:06 +0000 (UTC) Received: from vapier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1Ngis3-0005x9-TR for gentoo-commits@lists.gentoo.org; Sun, 14 Feb 2010 18:07:05 +0000 From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-projects commit in pax-utils: Makefile X-VCS-Repository: gentoo-projects X-VCS-Files: Makefile X-VCS-Directories: pax-utils X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: Sender: Mike Frysinger Date: Sun, 14 Feb 2010 18:07:03 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: f6754da9-63a5-4231-800e-04af4f7ac8cc X-Archives-Hash: da07af01c0d7da7f962d01d33d5702d8 vapier 10/02/14 18:07:03 Modified: Makefile Log: tweak debug/dist targets to avoid warnings Revision Changes Path 1.73 pax-utils/Makefile file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/pax-utils/Mak= efile?rev=3D1.73&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/pax-utils/Mak= efile?rev=3D1.73&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/pax-utils/Mak= efile?r1=3D1.72&r2=3D1.73 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-projects/pax-utils/Makefile,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- Makefile 15 Jan 2010 12:38:56 -0000 1.72 +++ Makefile 14 Feb 2010 18:07:03 -0000 1.73 @@ -1,6 +1,6 @@ # Copyright 2003-2006 Ned Ludd # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-projects/pax-utils/Makefile,v 1.72 2010/0= 1/15 12:38:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-projects/pax-utils/Makefile,v 1.73 2010/0= 2/14 18:07:03 vapier Exp $ #################################################################### =20 check_gcc=3D$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/n= ull 2>&1; \ @@ -56,7 +56,7 @@ @: =20 debug: - $(MAKE) CFLAGS=3D"$(CFLAGS) -g3 -ggdb -nopie" clean all + $(MAKE) CFLAGS=3D"$(CFLAGS) -g3 -ggdb $(call check-gcc,-nopie)" clean a= ll @-/sbin/chpax -permsx $(ELF_TARGETS) @-/sbin/paxctl -permsx $(ELF_TARGETS) =20 @@ -121,7 +121,9 @@ $(MAKE) -C pax-utils-$(PV)/man tar jcf pax-utils-$(PV).tar.bz2 pax-utils-$(PV) --exclude=3DCVS --exclu= de=3D.cvsignore @printf "\n ..... Making sure clean cvs build works ..... \n\n" - $(MAKE) -C pax-utils-$(PV) + unset CFLAGS; $(MAKE) -C pax-utils-$(PV) + $(MAKE) -C pax-utils-$(PV) clean + $(MAKE) -C pax-utils-$(PV) debug rm -rf pax-utils-$(PV) du -b pax-utils-$(PV).tar.bz2 =20