From patchwork Thu Jan 29 15:30:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 5743531 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 957D4BF6C3 for ; Thu, 29 Jan 2015 15:30:28 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E56222025A for ; Thu, 29 Jan 2015 15:30:27 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 270C82024C for ; Thu, 29 Jan 2015 15:30:27 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 04BE06E7AD; Thu, 29 Jan 2015 07:30:26 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by gabe.freedesktop.org (Postfix) with ESMTP id 75CFD6E7AB for ; Thu, 29 Jan 2015 07:30:24 -0800 (PST) Received: by mail-wi0-f182.google.com with SMTP id n3so25988525wiv.3 for ; Thu, 29 Jan 2015 07:30:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=fZZXy1a7SwrKf1tEO3+4p24SlccCP4SbcaPvXBG5doI=; b=PlcLK/XfYC6db5Cye4USzdIDaaAbmmmpCRR7SvbMcxX5rJknvxoAJR93Vlbu9bpUw5 srH0XKDzpVcDe91ITNbBn4n7yemr2A1Q8Io89aX1tTZFY2ixbmES7uducw+2V82qQo0h N6zmPlVSlnFJ7985Qm0fW9sRumgaUYErye8O2T3Y+tFeJEAg2xzUcuou0rJKWWjKleGF J6D+oVciM+bx4Ss7DEfxyb8Rsc17SrUQmtu7OPzbMn+HAvfpFIDjRUoA3keT+fvHvc/C KNofQgvmUB6wI1MuTyw72/e9HZOAEtEJoRvdUm880ia1KsR21Is6ZFvnqpr9Ey+YP/rO mIUQ== X-Received: by 10.180.208.74 with SMTP id mc10mr2067880wic.51.1422545423573; Thu, 29 Jan 2015 07:30:23 -0800 (PST) Received: from arch-laptop.localdomain (cpc12-croy20-2-0-cust52.croy.cable.virginm.net. [82.44.54.53]) by mx.google.com with ESMTPSA id k1sm10907068wjn.9.2015.01.29.07.30.19 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 29 Jan 2015 07:30:22 -0800 (PST) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 09.1/11] SQUASH: libkms-test: add missing header to the distribution Date: Thu, 29 Jan 2015 15:30:00 +0000 Message-Id: <1422545400-3038-1-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1422029304-1926-10-git-send-email-thierry.reding@gmail.com> References: <1422029304-1926-10-git-send-email-thierry.reding@gmail.com> Cc: emil.l.velikov@gmail.com 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_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, 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 Signed-off-by: Emil Velikov --- tests/kms/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kms/Makefile.am b/tests/kms/Makefile.am index c84bae0..764a00d 100644 --- a/tests/kms/Makefile.am +++ b/tests/kms/Makefile.am @@ -8,6 +8,9 @@ AM_CFLAGS = \ noinst_LTLIBRARIES = libkms-test.la +noinst_HEADERS = \ + libkms-test.h + libkms_test_la_SOURCES = \ libkms-test-crtc.c \ libkms-test-device.c \