From mboxrd@z Thu Jan 1 00:00:00 1970 From: Emil Velikov 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> References: <1410125413-19465-1-git-send-email-emil.l.velikov@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: 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) In-Reply-To: <1410125413-19465-1-git-send-email-emil.l.velikov@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org Cc: emil.l.velikov@gmail.com List-Id: dri-devel@lists.freedesktop.org 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)" -- 2.0.2