diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2011-04-29 15:00:04 +0200 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2011-04-29 15:00:04 +0200 |
commit | 94cb0278e29797645ec1df16ca7274bdfd89ee65 (patch) | |
tree | 18bcf74e934843990454a867ff5002d7b48fc124 | |
parent | 440d00eaa578530647abe4c92bfe05099fa9ea8d (diff) | |
parent | 14e88b51b262a9eb829268f8c6fad0399b5fe675 (diff) | |
download | abrt-94cb0278e29797645ec1df16ca7274bdfd89ee65.tar.gz abrt-94cb0278e29797645ec1df16ca7274bdfd89ee65.tar.xz abrt-94cb0278e29797645ec1df16ca7274bdfd89ee65.zip |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
-rw-r--r-- | Makefile.am | 8 | ||||
-rw-r--r-- | abrt.spec.in | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 7201f608..731e7e03 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,12 +16,16 @@ RPM_DIRS = --define "_sourcedir `pwd`" \ --define "_builddir `pwd`" \ --define "_srcrpmdir `pwd`" -rpm: dist +rpm: + autoconf --force ./gen-version + $(MAKE) dist rpmbuild $(RPM_DIRS) -ba abrt.spec -srpm: dist +srpm: + autoconf --force ./gen-version + $(MAKE) dist rpmbuild $(RPM_DIRS) -bs abrt.spec # value for overriding from command line diff --git a/abrt.spec.in b/abrt.spec.in index efe47ab0..691e3923 100644 --- a/abrt.spec.in +++ b/abrt.spec.in @@ -79,6 +79,7 @@ Development libraries and headers for libreport. Summary: Python bindings for report-libs. # Is group correct here? - Group: System Environment/Libraries +Requires: libreport = %{version}-%{release} %description -n libreport-python Python bindings for report-libs. @@ -86,6 +87,7 @@ Python bindings for report-libs. %package -n libreport-gtk Summary: GTK frontend for libreport Group: User Interface/Desktops +Requires: libreport = %{version}-%{release} %description -n libreport-gtk Applications for reporting bugs using libreport backend. |