Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 323549
Collapse All | Expand All

(-)a/include/Makefile.am (-4 / +2 lines)
Lines 15-28 Link Here
15
noinst_HEADERS += $(top_srcdir)/include/vm/*.h
15
noinst_HEADERS += $(top_srcdir)/include/vm/*.h
16
16
17
install-data-local:
17
install-data-local:
18
	destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
18
	instdest=$(DESTDIR)/${includedir}/spl; \
19
	instdest=$(DESTDIR)/usr/src/$$destname; \
20
	instfiles=`find . -name '*.h'`; \
19
	instfiles=`find . -name '*.h'`; \
21
        for instfile in $$instfiles; do \
20
        for instfile in $$instfiles; do \
22
		$(INSTALL) -D $$instfile $$instdest/$$instfile; \
21
		$(INSTALL) -D $$instfile $$instdest/$$instfile; \
23
        done
22
        done
24
23
25
uninstall-local:
24
uninstall-local:
26
	destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
25
	instdest=$(DESTDIR)/${includedir}/spl; \
27
	instdest=$(DESTDIR)/usr/src/$$destname; \
28
	$(RM) -R $$instdest
26
	$(RM) -R $$instdest
(-)a/Makefile.am (-2 / +1 lines)
Lines 29-36 Link Here
29
29
30
if CONFIG_KERNEL
30
if CONFIG_KERNEL
31
install-data-local:
31
install-data-local:
32
	destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
32
	instdest=$(DESTDIR)/${includedir}/spl; \
33
	instdest=$(DESTDIR)/usr/src/$$destname; \
34
	echo "$(SPL_META_VERSION)" >$$instdest/spl.release; \
33
	echo "$(SPL_META_VERSION)" >$$instdest/spl.release; \
35
	for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
34
	for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
36
		$(INSTALL) -D $$instfile $$instdest/$$instfile; \
35
		$(INSTALL) -D $$instfile $$instdest/$$instfile; \

Return to bug 323549