42 lines
1.0 KiB
Diff
42 lines
1.0 KiB
Diff
|
From 3d6d241eb1931d7f0be5a755c4c04daac0fde6bb Mon Sep 17 00:00:00 2001
|
||
|
From: Mike Frysinger <vapier@gentoo.org>
|
||
|
Date: Sat, 18 Jan 2014 23:11:23 -0500
|
||
|
Subject: [PATCH 15/34] build: drop aclincludedir, use pkgincludedir
|
||
|
|
||
|
Automake already provides a variable for
|
||
|
${includedir}/${PACKAGE_NAME}; use it.
|
||
|
---
|
||
|
Makefile.am | 3 +--
|
||
|
include/Makemodule.am | 2 +-
|
||
|
2 files changed, 2 insertions(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/Makefile.am b/Makefile.am
|
||
|
index 40d6ae5..915ab2a 100644
|
||
|
--- a/Makefile.am
|
||
|
+++ b/Makefile.am
|
||
|
@@ -10,10 +10,9 @@ AM_CPPFLAGS = \
|
||
|
-I$(top_srcdir)/include \
|
||
|
-DLOCALEDIR=\"$(localedir)\"
|
||
|
|
||
|
-aclincludedir = $(includedir)/acl
|
||
|
sysincludedir = $(includedir)/sys
|
||
|
|
||
|
-aclinclude_HEADERS =
|
||
|
+pkginclude_HEADERS =
|
||
|
sysinclude_HEADERS =
|
||
|
bin_PROGRAMS =
|
||
|
lib_LTLIBRARIES =
|
||
|
diff --git a/include/Makemodule.am b/include/Makemodule.am
|
||
|
index 2596f5e..37364d3 100644
|
||
|
--- a/include/Makemodule.am
|
||
|
+++ b/include/Makemodule.am
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-aclinclude_HEADERS += \
|
||
|
+pkginclude_HEADERS += \
|
||
|
include/libacl.h
|
||
|
|
||
|
sysinclude_HEADERS += \
|
||
|
--
|
||
|
2.5.2
|
||
|
|