From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-636557-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 68D531381F3
	for <garchives@archives.gentoo.org>; Fri, 18 Oct 2013 19:13:48 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id B560CE0A60;
	Fri, 18 Oct 2013 19:13:46 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 4D11FE0A60
	for <gentoo-commits@lists.gentoo.org>; Fri, 18 Oct 2013 19:13:46 +0000 (UTC)
Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6])
	(using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 5EAD533F005
	for <gentoo-commits@lists.gentoo.org>; Fri, 18 Oct 2013 19:13:45 +0000 (UTC)
Received: by flycatcher.gentoo.org (Postfix, from userid 2273)
	id 13A3C2004C; Fri, 18 Oct 2013 19:13:43 +0000 (UTC)
From: "Anthony G. Basile (blueness)" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Reply-To: gentoo-dev@lists.gentoo.org, blueness@gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/memtest86/files: memtest86-4.3.3-build-nopie.patch
X-VCS-Repository: gentoo-x86
X-VCS-Files: memtest86-4.3.3-build-nopie.patch
X-VCS-Directories: sys-apps/memtest86/files
X-VCS-Committer: blueness
X-VCS-Committer-Name: Anthony G. Basile
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit
Message-Id: <20131018191343.13A3C2004C@flycatcher.gentoo.org>
Date: Fri, 18 Oct 2013 19:13:43 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 5533a4fc-80f5-46a0-ba10-85490734769f
X-Archives-Hash: e9133b378b1d66c78379bef6b2d63b84

blueness    13/10/18 19:13:43

  Modified:             memtest86-4.3.3-build-nopie.patch
  Log:
  Fix -fno-pie for bug #487600
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.2                  sys-apps/memtest86/files/memtest86-4.3.3-build-nopie.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtest86/files/memtest86-4.3.3-build-nopie.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtest86/files/memtest86-4.3.3-build-nopie.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/memtest86/files/memtest86-4.3.3-build-nopie.patch?r1=1.1&r2=1.2

Index: memtest86-4.3.3-build-nopie.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/memtest86/files/memtest86-4.3.3-build-nopie.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- memtest86-4.3.3-build-nopie.patch	10 Oct 2013 20:53:29 -0000	1.1
+++ memtest86-4.3.3-build-nopie.patch	18 Oct 2013 19:13:42 -0000	1.2
@@ -11,7 +11,7 @@
  
 -CFLAGS= -Wall -march=i486 -m32 -O1 -fomit-frame-pointer -fno-builtin \
 -	-ffreestanding -fPIC $(SMP_FL) -fno-stack-protector
-+CFLAGS= -Wall -march=i486 -m32 -O1 -fomit-frame-pointer -fno-builtin -ffreestanding -fPIC -fno-stack-protector -nopie $(SMP_FL)
++CFLAGS= -Wall -march=i486 -m32 -O1 -fomit-frame-pointer -fno-builtin -ffreestanding -fPIC -fno-stack-protector -fno-pie $(SMP_FL)
  
  OBJS= head.o reloc.o main.o test.o init.o lib.o patn.o screen_buffer.o \
        config.o memsize.o error.o smp.o cpuid.o vmem.o random.o
@@ -33,7 +33,7 @@
  
  random.o: random.c
 -	$(CC) -c -Wall -march=i486 -m32 -O3 -fomit-frame-pointer -fno-builtin -ffreestanding random.c
-+	$(CC) -c -Wall -march=i486 -m32 -O3 -fomit-frame-pointer -fno-builtin -ffreestanding -fno-stack-protector -nopie random.c
++	$(CC) -c -Wall -march=i486 -m32 -O3 -fomit-frame-pointer -fno-builtin -ffreestanding -fno-stack-protector -fno-pie random.c
  
  clean:
  	rm -f *.o *.s *.iso memtest.bin memtest memtest_shared \