Install spl-devel products in /usr/src/spl-SPL_VERSION/LINUX_VERSION/

Remove the spl symlink, it's just confusing
This commit is contained in:
Brian Behlendorf 2009-06-26 16:30:44 -07:00
parent c0517c35d2
commit f4f9cd75a1
4 changed files with 8 additions and 6 deletions

View File

@ -16,11 +16,11 @@ distclean-local::
-type f -print | xargs $(RM)
install-data-local:
instdest=$(DESTDIR)/${prefix}/src/spl-$(SPL_META_VERSION); \
destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
instdest=$(DESTDIR)/${prefix}/src/$$destname; \
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
$(INSTALL) -D $$instfile $$instdest/$$instfile; \
done
(cd $(DESTDIR)/${prefix}/src && ln -f -s spl-$(SPL_META_VERSION) spl)
ctags:
$(RM) $(top_srcdir)/tags

View File

@ -661,11 +661,11 @@ distclean-local::
-type f -print | xargs $(RM)
install-data-local:
instdest=$(DESTDIR)/${prefix}/src/spl-$(SPL_META_VERSION); \
destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
instdest=$(DESTDIR)/${prefix}/src/$$destname; \
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
$(INSTALL) -D $$instfile $$instdest/$$instfile; \
done
(cd $(DESTDIR)/${prefix}/src && ln -f -s spl-$(SPL_META_VERSION) spl)
ctags:
$(RM) $(top_srcdir)/tags

View File

@ -16,7 +16,8 @@ noinst_HEADERS += util/*.h
noinst_HEADERS += vm/*.h
install-data-local:
instdest=$(DESTDIR)/${prefix}/src/spl-$(SPL_META_VERSION); \
destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
instdest=$(DESTDIR)/${prefix}/src/$$destname; \
instfiles=`find . -name '*.h'`; \
for instfile in $$instfiles; do \
$(INSTALL) -D $$instfile $$instdest/$$instfile; \

View File

@ -388,7 +388,8 @@ uninstall-am: uninstall-info-am
install-data-local:
instdest=$(DESTDIR)/${prefix}/src/spl-$(SPL_META_VERSION); \
destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
instdest=$(DESTDIR)/${prefix}/src/$$destname; \
instfiles=`find . -name '*.h'`; \
for instfile in $$instfiles; do \
$(INSTALL) -D $$instfile $$instdest/$$instfile; \