diff options
Diffstat (limited to 'systemtap.spec')
-rw-r--r-- | systemtap.spec | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/systemtap.spec b/systemtap.spec index 540a9d93..a01ccb11 100644 --- a/systemtap.spec +++ b/systemtap.spec @@ -3,10 +3,11 @@ %{!?with_crash: %define with_crash 0} %{!?with_bundled_elfutils: %define with_bundled_elfutils 0} %{!?elfutils_version: %define elfutils_version 0.127} +%{!?pie_supported: %define pie_supported 1} Name: systemtap -Version: 0.9 -Release: 3%{?dist} +Version: 0.9.5 +Release: 1%{?dist} # for version, see also configure.ac Summary: Instrumentation System Group: Development/System @@ -175,9 +176,15 @@ cd .. %define docs_config --disable-docs %endif +# Enable pie as configure defaults to disabling it +%if %{pie_supported} +%define pie_config --enable-pie +%else +%define pie_config --disable-pie +%endif -%configure %{?elfutils_config} %{sqlite_config} %{crash_config} %{docs_config} +%configure %{?elfutils_config} %{sqlite_config} %{crash_config} %{docs_config} %{pie_config} make %{?_smp_mflags} %install @@ -245,13 +252,12 @@ exit 0 %if %{with_docs} %doc docs.installed/*.pdf %doc docs.installed/tapsets -%{_mandir}/man3stap/* %endif %{_bindir}/stap %{_bindir}/stap-report %{_mandir}/man1/* -%{_mandir}/man5/* +%{_mandir}/man3/* %dir %{_datadir}/%{name} %{_datadir}/%{name}/runtime @@ -317,6 +323,9 @@ exit 0 %changelog +* Fri Mar 27 2009 Josh Stone <jistone@redhat.com> - 0.9.5-1 +- Upstream release. + * Wed Mar 18 2009 Will Cohen <wcohen@redhat.com> - 0.9-2 - Add location of man pages. |