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 0EDF913800E for ; Sun, 29 Jul 2012 15:27:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52898E0262; Sun, 29 Jul 2012 15:27:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 200F5E0262 for ; Sun, 29 Jul 2012 15:27:37 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87D1B1B400A for ; Sun, 29 Jul 2012 15:27:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 495CEE5437 for ; Sun, 29 Jul 2012 15:27:35 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1343575643.0a063eb50a55b8b405ed22e407eb1d3078370e30.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:elfix-0.5.x commit in: /, tests/gnustack/ X-VCS-Repository: proj/elfix X-VCS-Files: configure.ac tests/gnustack/Makefile.am X-VCS-Directories: / tests/gnustack/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 0a063eb50a55b8b405ed22e407eb1d3078370e30 X-VCS-Branch: elfix-0.5.x Date: Sun, 29 Jul 2012 15:27:35 +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: e0910c60-781a-4701-8f55-e5d216011387 X-Archives-Hash: c517e8da4162b5a9b062d00d0c53a8db commit: 0a063eb50a55b8b405ed22e407eb1d3078370e30 Author: Anthony G. Basile gentoo org> AuthorDate: Sun Jul 29 01:16:22 2012 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Jul 29 15:27:23 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=0a063eb5 tests/gnustack/Makefile.am: make sed line work on arm (cherry picked from commit 8fa951f1421051e12778fd438856cd77864c2302) --- configure.ac | 1 + tests/gnustack/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 23d9fd7..a2a7f5a 100644 --- a/configure.ac +++ b/configure.ac @@ -54,6 +54,7 @@ AC_ARG_ENABLE( # Checks for programs. AC_PROG_AWK AC_PROG_CC +AC_PROG_SED # Checks for libraries. AC_CHECK_LIB([elf], [elf_begin],[],[AC_MSG_ERROR(["Missing necessary function elf_begin in libelf"])]) diff --git a/tests/gnustack/Makefile.am b/tests/gnustack/Makefile.am index a1dc24b..6f5f569 100644 --- a/tests/gnustack/Makefile.am +++ b/tests/gnustack/Makefile.am @@ -2,7 +2,7 @@ noinst_PROGRAMS = bad-gnustack bad-gnustack.s: bad-gnustack.c $(CC) -S $< - sed -i -e 's/GNU-stack,"",@progbits/GNU-stack,"x",@progbits/' $@ + $(SED) -i -e 's/GNU-stack,"",/GNU-stack,"x",/' $@ bad-gnustack: bad-gnustack.s $(CC) -o $@ $<