From patchwork Fri Mar 6 08:54:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Kurtz X-Patchwork-Id: 5950681 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 73949BF440 for ; Fri, 6 Mar 2015 08:54:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 92E3620430 for ; Fri, 6 Mar 2015 08:54:51 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 66BCA2042A for ; Fri, 6 Mar 2015 08:54:49 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A9C9A6E13B; Fri, 6 Mar 2015 00:54:48 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-pa0-f48.google.com (mail-pa0-f48.google.com [209.85.220.48]) by gabe.freedesktop.org (Postfix) with ESMTP id 4495B6E13B for ; Fri, 6 Mar 2015 00:54:47 -0800 (PST) Received: by padet14 with SMTP id et14so26002409pad.11 for ; Fri, 06 Mar 2015 00:54:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id; bh=5vPpbLeK3I61vvWAJOM45UMLIVVXCcYkQCeYD3rYxD8=; b=X42EH+1nou2jOOTD/7AbShhgRaEWhhA0U7e5xWeiOs8uMJGorn67RwOyIZh0uHeOQw i5QaZeGgNFdtEWQbfg9VwTIhcu2MpELFD5GyYi8Rqu6e7C7nefAQpkMr9K9elNQJ+EXW 5xyGUbr7NhSiRIkiDsc+kAUvQuKSf06gQoqo4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=5vPpbLeK3I61vvWAJOM45UMLIVVXCcYkQCeYD3rYxD8=; b=dQhY3SBydTPhzcfbkpBBMYyIOPpr8C4lwS5oCpZFxE/tbc+8LlKI5PvLW4FTJlCdhh ChRIbla6zUqVFaJgZcUHzrdVenjReVaKFr+49ymtBiMQBKuZ9KUVoakxuX4tee6X89P/ clGRTQDPGylSYTD2DmmjoxXqUMpITtCIa5+E5+7De6JVsRMsnrXapg7D3JhyeiXyqfRI CZvz28a4cpxBvx7+/IdahE725GQlR1qNvRpd60EKTYAqQEpyegz8inXWYe0G7eDNd6jz IxbJXXA39V6sFAXq8B07XY6Mud6XzvixMqFA9DvSuyRUA1O8ZAFdfa6rSvxINQQgcZkq S8qw== X-Gm-Message-State: ALoCoQmL33bawbY/X8LilSQVPaEQv7o7SLolnMt2SKa9do2RjWCuDaM9DGmcAYvr7qvxRMBZUWki X-Received: by 10.68.200.134 with SMTP id js6mr17346719pbc.55.1425632087034; Fri, 06 Mar 2015 00:54:47 -0800 (PST) Received: from djkurtz1.tpe.corp.google.com ([172.30.210.4]) by mx.google.com with ESMTPSA id ri2sm8978938pdb.49.2015.03.06.00.54.45 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 06 Mar 2015 00:54:46 -0800 (PST) From: Daniel Kurtz To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm] proptest: install it with --enable-install-test-programs Date: Fri, 6 Mar 2015 16:54:40 +0800 Message-Id: <1425632080-15832-1-git-send-email-djkurtz@chromium.org> X-Mailer: git-send-email 2.2.0.rc0.207.ga3a616c X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP --enable-install-test-programs allows tests to be installed in $bindir. This is disabled by default, but very useful when cross compiling. Signed-off-by: Daniel Kurtz --- tests/proptest/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/proptest/Makefile.am b/tests/proptest/Makefile.am index 48a84c1..0594e02 100644 --- a/tests/proptest/Makefile.am +++ b/tests/proptest/Makefile.am @@ -3,8 +3,13 @@ AM_CFLAGS = \ -I$(top_srcdir)/include/drm \ -I$(top_srcdir) +if HAVE_INSTALL_TESTS +bin_PROGRAMS = \ + proptest +else noinst_PROGRAMS = \ proptest +endif proptest_SOURCES = \ proptest.c