From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-la0-f46.google.com ([209.85.215.46]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1Ts0DD-0006mM-TL for openembedded-core@lists.openembedded.org; Mon, 07 Jan 2013 01:05:07 +0100 Received: by mail-la0-f46.google.com with SMTP id fq13so13650892lab.5 for ; Sun, 06 Jan 2013 15:49:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=LuRh5TFt+Nz+SNOfvvQvJ/z0bMWUcjjoT61jZu8EwrM=; b=Hhlv41pY2Q/RiW2VQRTLUJ3TqnuaX3d1eRYV/j0ifpcZ8VL7D/MmijIaB1DoEl6y8M GxFYZvRgIO8LaqvV9K0OQgPwRcGUjMr47zdVSgb9Yxn52oVsf0wH8KuhAKdNvLEbm+M5 DCzl8iNBLHHRXH3/+G/5ZJpx5rBhRMpLDiVSq7SLC72jASJ6tMfsi7esLq8M/U3Z3VGo draei1PcAX7nTvR6HfT4fpwSbgclRBRJlv+eXNNT4DT61k6SIXHLkOKGKBYDgm/K0SZH LyonFIXDgggignOne0jXEUKSGnxLu1HKsnrOAYl63gUPMTTnm3UOyFHXgprmiAu+sQHL m9SQ== X-Received: by 10.112.11.105 with SMTP id p9mr22717074lbb.129.1357516199501; Sun, 06 Jan 2013 15:49:59 -0800 (PST) Received: from prime (a91-153-5-18.elisa-laajakaista.fi. [91.153.5.18]) by mx.google.com with ESMTPS id ie3sm928633lab.4.2013.01.06.15.49.56 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 06 Jan 2013 15:49:58 -0800 (PST) Received: from cazfi by prime with local (Exim 4.80) (envelope-from ) id 1TrzyO-0001PY-OS; Mon, 07 Jan 2013 01:49:48 +0200 From: Marko Lindqvist To: openembedded-core@lists.openembedded.org Date: Mon, 7 Jan 2013 01:49:31 +0200 Message-Id: <1357516181-5358-6-git-send-email-cazfi74@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1357516181-5358-5-git-send-email-cazfi74@gmail.com> References: <1357516181-5358-1-git-send-email-cazfi74@gmail.com> <1357516181-5358-2-git-send-email-cazfi74@gmail.com> <1357516181-5358-3-git-send-email-cazfi74@gmail.com> <1357516181-5358-4-git-send-email-cazfi74@gmail.com> <1357516181-5358-5-git-send-email-cazfi74@gmail.com> Subject: [PATCH v2 05/15] popt: disable tests X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2013 00:05:08 -0000 Use of $(top_srcdir) in TESTS is an error causing automake-1.13 to abort. Disable the tests completely. Signed-off-by: Marko Lindqvist --- meta/recipes-support/popt/popt/disable_tests.patch | 21 ++++++++++++++++++++ meta/recipes-support/popt/popt_1.16.bb | 3 ++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-support/popt/popt/disable_tests.patch diff --git a/meta/recipes-support/popt/popt/disable_tests.patch b/meta/recipes-support/popt/popt/disable_tests.patch new file mode 100644 index 0000000..dedd061 --- /dev/null +++ b/meta/recipes-support/popt/popt/disable_tests.patch @@ -0,0 +1,21 @@ +Use of $(top_srcdir) in TESTS is an error which causes +automake-1.13 to abort. Just remove tests. + +Upstream-Status: Inappropriate + +Signed-off-by: Marko Lindqvist +diff -Nurd popt-1.16/Makefile.am popt-1.16/Makefile.am +--- popt-1.16/Makefile.am 2010-05-04 23:55:54.000000000 +0300 ++++ popt-1.16/Makefile.am 2013-01-02 13:34:29.540361391 +0200 +@@ -34,11 +34,6 @@ + + noinst_SCRIPTS = testit.sh + +-TESTS_ENVIRONMENT = \ +-test1="$(top_builddir)/test1" +- +-TESTS = $(top_srcdir)/testit.sh +- + include_HEADERS = popt.h + + usrlibdir = $(libdir) diff --git a/meta/recipes-support/popt/popt_1.16.bb b/meta/recipes-support/popt/popt_1.16.bb index 91b0d60..aa4e379 100644 --- a/meta/recipes-support/popt/popt_1.16.bb +++ b/meta/recipes-support/popt/popt_1.16.bb @@ -4,11 +4,12 @@ SECTION = "libs" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d" -PR = "r2" +PR = "r3" SRC_URI = "http://rpm5.org/files/popt/popt-${PV}.tar.gz \ file://pkgconfig_fix.patch \ file://popt_fix_for_automake-1.12.patch \ + file://disable_tests.patch \ " SRC_URI[md5sum] = "3743beefa3dd6247a73f8f7a32c14c33" -- 1.7.10.4