From patchwork Wed Nov 5 16:17:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5235591 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id C74CB9F295 for ; Wed, 5 Nov 2014 16:17:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E5B35201EF for ; Wed, 5 Nov 2014 16:17:39 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 1CC4B20173 for ; Wed, 5 Nov 2014 16:17:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 750266E12B; Wed, 5 Nov 2014 08:17:37 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169]) by gabe.freedesktop.org (Postfix) with ESMTP id A7E266E12B for ; Wed, 5 Nov 2014 08:17:35 -0800 (PST) Received: by mail-wi0-f169.google.com with SMTP id n3so11861993wiv.2 for ; Wed, 05 Nov 2014 08:17:34 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=1yxiVszodAUVUSZlnyJDLjHu9dm/uUeQ5gOGEJiEkik=; b=eZrHuLjLx1mPIiGDFbLzScCC5YoeDKLbBixvmU8Hb21J+2V0Afb20Bky6Vk/t+b+wJ pCbDcV8WQ2bbEJmuJvFgmrdpwD/TxvoQlPkgNFSrJ0WaPKl6svFg30n3IJX4We3lFLlz Yd7x2HLwicVc+tr10R6ErU7JMc1heWNAT7ezZdR3Z81kQTtXYLYnZ/q0+amSLVq5/2gG IycbEEK2c86anqLfRnnSUuTfT0nNXZaX2928kAkfqFVNsM6Y992MiuX41yAYE8fz+gaq bfFe6rArEyl9pUsYf8p55UP3EUjNFBiAZGutOKchy9o6/m1VT6r11ne5IFxV36kbU993 mm0g== X-Gm-Message-State: ALoCoQk9IgYtc1ls9lNhVvsaSI7/hI/6elUcGvd85yTEN1iwBqCjLMbqM/jiRj6pPuIAEqGdmcuJ X-Received: by 10.180.90.241 with SMTP id bz17mr6818188wib.75.1415204254468; Wed, 05 Nov 2014 08:17:34 -0800 (PST) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id wl1sm4615330wjb.4.2014.11.05.08.17.32 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 05 Nov 2014 08:17:32 -0800 (PST) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Wed, 5 Nov 2014 16:17:30 +0000 Message-Id: <1415204250-27125-1-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 Subject: [Intel-gfx] [PATCH i-g-t] tools/quick_dump: don't include generated sources in the distribution X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, 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 This also ensures that "make dist" works even if SWIG is not available. BUILT_SOURCES is not required because the files are already explicit dependencies of other rules. Signed-off-by: Thomas Wood --- tools/quick_dump/Makefile.am | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/quick_dump/Makefile.am b/tools/quick_dump/Makefile.am index e7e1f62..29d5721 100644 --- a/tools/quick_dump/Makefile.am +++ b/tools/quick_dump/Makefile.am @@ -1,13 +1,12 @@ AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib $(PYTHON_CPPFLAGS) $(DRM_CFLAGS) $(CAIRO_CFLAGS) -I$(top_srcdir) -BUILT_SOURCES = chipset_wrap_python.c - dist_bin_SCRIPTS = quick_dump.py reg_access.py bin_SCRIPTS = chipset.py lib_LTLIBRARIES = I915ChipsetPython.la I915ChipsetPython_la_LDFLAGS = -module -avoid-version $(PYTHON_LDFLAGS) -I915ChipsetPython_la_SOURCES = chipset_wrap_python.c chipset_macro_wrap.c +I915ChipsetPython_la_SOURCES = chipset_macro_wrap.c +nodist_I915ChipsetPython_la_SOURCES = chipset_wrap_python.c I915ChipsetPython_la_LIBADD = \ $(top_builddir)/lib/libintel_tools.la \ $(PCIACCESS_LIBS) \ @@ -26,4 +25,4 @@ EXTRA_DIST = $(QUICK_DUMP_EXTRA_DIST) \ base_interrupt.txt base_other.txt base_power.txt base_rings.txt \ quick_dump.py \ reg_access.py \ - chipset.i chipset.py + chipset.i