From: Emil Velikov Date: Sun, 7 Sep 2014 14:54:16 +0000 (+0100) Subject: automake: fix 'make commit-headers' X-Git-Tag: 2.4.57~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f52309ebbe024d0e8d44c34d64e2eb8ad29828fa;hp=deb690f78db056acd054a6ac482e084a54b311c9;p=platform%2Fupstream%2Flibdrm.git automake: fix 'make commit-headers' 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 Reviewed-by: Jakob Bornecrantz --- 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)"