d23249ff0b
Update to 2.0. Verified against current Factory using systemtap-testsuite. OBS-URL: https://build.opensuse.org/request/show/148159 OBS-URL: https://build.opensuse.org/package/show/devel:tools/systemtap?expand=0&rev=57
50 lines
1.8 KiB
Diff
50 lines
1.8 KiB
Diff
From: Tony Jones <tonyj@suse.de>
|
|
Subject: change doc install path
|
|
References: none
|
|
Upstream: never
|
|
|
|
SuSE %{_docdir} is /usr/share/doc/packages. Change install locations to match.
|
|
|
|
---
|
|
Makefile.am | 2 +-
|
|
doc/Makefile.am | 2 +-
|
|
doc/SystemTap_Tapset_Reference/Makefile.am | 4 ++--
|
|
3 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -259,7 +259,7 @@ endif
|
|
| while read f; do if test -x $$f; then \
|
|
i_cmd="$(INSTALL_PROGRAM)"; else \
|
|
i_cmd="$(INSTALL_DATA)"; fi; \
|
|
- $$i_cmd -D $$f $(DESTDIR)$(docdir)/examples/$$f; done)
|
|
+ $$i_cmd -D $$f $(DESTDIR)$(datadir)/doc/packages/systemtap/examples/$$f; done)
|
|
test -e $(DESTDIR)$(sysconfdir)/systemtap || mkdir -p $(DESTDIR)$(sysconfdir)/systemtap
|
|
if BUILD_SERVER
|
|
test -e $(DESTDIR)$(localstatedir)/run/stap-server || mkdir -p $(DESTDIR)$(localstatedir)/run/stap-server
|
|
--- a/doc/Makefile.am
|
|
+++ b/doc/Makefile.am
|
|
@@ -2,7 +2,7 @@
|
|
## process this file with automake to produce Makefile.in
|
|
|
|
PDF_FILES = tutorial.pdf langref.pdf
|
|
-DOC_INSTALL_DIR = $(DESTDIR)$(datadir)/doc/systemtap
|
|
+DOC_INSTALL_DIR = $(DESTDIR)$(datadir)/doc/packages/systemtap
|
|
SUBDIRS = SystemTap_Tapset_Reference beginners
|
|
|
|
if BUILD_DOCS
|
|
--- a/doc/SystemTap_Tapset_Reference/Makefile.am
|
|
+++ b/doc/SystemTap_Tapset_Reference/Makefile.am
|
|
@@ -1,9 +1,9 @@
|
|
# Makefile.am --- automake input file for systemtap tapset reference manual
|
|
## process this file with automake to produce Makefile.in
|
|
|
|
-DOC_INSTALL_DIR = $(DESTDIR)$(datadir)/doc/systemtap
|
|
+DOC_INSTALL_DIR = $(DESTDIR)$(datadir)/doc/packages/systemtap
|
|
MAN_INSTALL_DIR = $(DESTDIR)$(mandir)/man3
|
|
-HTML_INSTALL_DIR = $(DESTDIR)$(datadir)/doc/systemtap/tapsets
|
|
+HTML_INSTALL_DIR = $(DOC_INSTALL_DIR)/tapsets
|
|
|
|
|
|
###
|