From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 402AD138454 for ; Fri, 11 Sep 2015 07:54:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0729421C046; Fri, 11 Sep 2015 07:53:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6556421C046 for ; Fri, 11 Sep 2015 07:53:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9EA92340AC0 for ; Fri, 11 Sep 2015 07:53:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CBC61FB for ; Fri, 11 Sep 2015 07:53:28 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1429068308.32b850d49a5ae11dbaf0b4b79067c7fa9dfc3726.vapier@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: libsandbox/ X-VCS-Repository: proj/sandbox X-VCS-Files: libsandbox/Makefile.am X-VCS-Directories: libsandbox/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 32b850d49a5ae11dbaf0b4b79067c7fa9dfc3726 X-VCS-Branch: master Date: Fri, 11 Sep 2015 07:53:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ca664bf6-dadc-4118-9e5d-c336affe8181 X-Archives-Hash: e9b33ebf3b7fb456c035ee1b6c5e610a commit: 32b850d49a5ae11dbaf0b4b79067c7fa9dfc3726 Author: Mike Frysinger gentoo org> AuthorDate: Wed Apr 15 03:25:08 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Apr 15 03:25:08 2015 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=32b850d4 libsandbox: fix building w/gcc-5 The preprocessed output of gcc has changed a bit to retain more whitespace, but this just confuses/breaks the scripts that parse it. Add the -P flag to normalize things a bit. Signed-off-by: Mike Frysinger gentoo.org> libsandbox/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsandbox/Makefile.am b/libsandbox/Makefile.am index 2eb8da1..529d835 100644 --- a/libsandbox/Makefile.am +++ b/libsandbox/Makefile.am @@ -68,7 +68,7 @@ sb_nr.h: symbols.h $(SB_NR_FILE) TRACE_MAKE_HEADER = \ $(SB_AWK) $(GEN_TRACE_SCRIPT) -v MODE=gen | \ - $(COMPILE) -E -include $(top_srcdir)/headers.h - $$f | \ + $(COMPILE) -E -P -include $(top_srcdir)/headers.h - $$f | \ $(SB_AWK) $(GEN_TRACE_SCRIPT) -v syscall_prefix=$$t > $$header trace_syscalls.h: $(GEN_TRACE_SCRIPT) Makefile if SB_SCHIZO