From patchwork Sun Sep 7 21:29:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 4859351 Return-Path: X-Original-To: patchwork-dri-devel@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 E0DEF9F371 for ; Sun, 7 Sep 2014 21:31:33 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3E7302012D for ; Sun, 7 Sep 2014 21:31:32 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 6C7DD20122 for ; Sun, 7 Sep 2014 21:31:30 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E82BB6E11D; Sun, 7 Sep 2014 14:31:28 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-wg0-f48.google.com (mail-wg0-f48.google.com [74.125.82.48]) by gabe.freedesktop.org (Postfix) with ESMTP id 3015A6E11D for ; Sun, 7 Sep 2014 14:31:27 -0700 (PDT) Received: by mail-wg0-f48.google.com with SMTP id m15so647823wgh.7 for ; Sun, 07 Sep 2014 14:31:26 -0700 (PDT) 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=YlZZ7SN0h5hSbz1C3kPbg3nEZODVz2hOrvRQsSwZmV8=; b=YKXwLNdrcF75fcj8JFwlKAO5i28kb1AIOo6PkBX2YpntI2cIV3Kvb36PHSeo8MYXhc aRayYlIf8apLpjHaE1vVHr4F62oOV9QsKMH3vOvxsoLiAZQ4m8MMkTdkRXX56Nu7gN12 qJNIM5p4wN2xeJpeTosD5Ga9KzdBKT8L/ETwSz2xjrq65Nks1Oc03NSgLQo18PKUHt96 ZI4yq4ykJjTolfh+L18UnCTmXKH9/OW4eAps+yTBa4tRLZ3He1rua8gPD85WpHa7qrr/ iJmSFmjYfMHDWyiom+p/qTm/sfN13cOjiwu8vze7o1YCcaHrcqIjOATM3SoMSRMzjpT0 7mWg== X-Received: by 10.180.88.167 with SMTP id bh7mr18580734wib.12.1410125486397; Sun, 07 Sep 2014 14:31:26 -0700 (PDT) Received: from localhost.localdomain (cpc20-stap10-2-0-cust563.12-2.cable.virginm.net. [82.20.130.52]) by mx.google.com with ESMTPSA id ub19sm9644662wib.9.2014.09.07.14.31.25 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 07 Sep 2014 14:31:25 -0700 (PDT) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 03/18] automake: fix 'make commit-headers' Date: Sun, 7 Sep 2014 22:29:58 +0100 Message-Id: <1410125413-19465-4-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.0.2 In-Reply-To: <1410125413-19465-1-git-send-email-emil.l.velikov@gmail.com> References: <1410125413-19465-1-git-send-email-emil.l.velikov@gmail.com> Cc: emil.l.velikov@gmail.com X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.15 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=-5.7 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 Not too long ago the in-kernel drm public headers were moved. Since then we could no longer fetch/update the ones in libdrm using the command. Signed-off-by: Emil Velikov --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index a9ec25b..884841f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -80,8 +80,8 @@ endif copy-headers : - cp -r $(kernel_source)/usr/include/drm $(top_srcdir)/include + cp -r $(kernel_source)/include/uapi/drm/*.h $(top_srcdir)/include/drm/ commit-headers : copy-headers - git add include + git add include/drm/*.h git commit -am "Copy headers from kernel $$(GIT_DIR=$(kernel_source)/.git git describe)"