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 4D8C213800E for ; Sun, 29 Jul 2012 01:17:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C81DE0529; Sun, 29 Jul 2012 01:16:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 692DEE0529 for ; Sun, 29 Jul 2012 01:16:47 +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 C1A961B4003 for ; Sun, 29 Jul 2012 01:16:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 85637E5433 for ; Sun, 29 Jul 2012 01:16:45 +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: <1343524590.8fa951f1421051e12778fd438856cd77864c2302.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master 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: 8fa951f1421051e12778fd438856cd77864c2302 X-VCS-Branch: master Date: Sun, 29 Jul 2012 01:16:45 +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: eec70d55-00a8-4604-8be5-b9934e78fe40 X-Archives-Hash: 50b5dffe69e147a1c9e115e9155faa77 commit: 8fa951f1421051e12778fd438856cd77864c2302 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 01:16:30 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=8fa951f1 tests/gnustack/Makefile.am: make sed line work on arm --- configure.ac | 1 + tests/gnustack/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 987b20a..75a09b7 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 $@ $<