summaryrefslogtreecommitdiffstats
path: root/main.cxx
diff options
context:
space:
mode:
authorfche <fche>2005-07-14 18:39:00 +0000
committerfche <fche>2005-07-14 18:39:00 +0000
commitecfa3e8b5f0e4e63cf16fcb36f79bb4e5865afaf (patch)
tree82f4274bbc9c87d63459e384a129ca08c68279eb /main.cxx
parent1b45b189806bda83b80cf34ac4c268db59970811 (diff)
downloadsystemtap-steved-ecfa3e8b5f0e4e63cf16fcb36f79bb4e5865afaf.tar.gz
systemtap-steved-ecfa3e8b5f0e4e63cf16fcb36f79bb4e5865afaf.tar.xz
systemtap-steved-ecfa3e8b5f0e4e63cf16fcb36f79bb4e5865afaf.zip
2005-07-14 Frank Ch. Eigler <fche@redhat.com>
* Makefile.am (stpd): Install in $pkglibdir. (runtime): Copy to $pkgdatadir. * configure.ac: Pass along pkgdatadir and pkglibdir. * main.cxx: Default runtime_path from pkgdatadir. * buildrun.cxx (run_pass): Correct stpd directory. * Makefile.in, configure, config.in: Regenerated.
Diffstat (limited to 'main.cxx')
-rw-r--r--main.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cxx b/main.cxx
index 43a41cda..69f87655 100644
--- a/main.cxx
+++ b/main.cxx
@@ -108,7 +108,7 @@ main (int argc, char * const argv [])
s.verbose = false;
s.test_mode = false;
s.last_pass = 5;
- s.runtime_path = "/usr/share/systemtap/runtime"; // XXX
+ s.runtime_path = string(PKGDATADIR) + "/runtime";
s.module_name = "stap_" + stringify(getuid()) + "_" + stringify(time(0));
s.keep_tmpdir = false;