Browse Source

Merge branch 'tz/maint-rpm' into maint

* tz/maint-rpm:
  Makefile: Ensure rpm packages can be read by older rpm versions
maint
Junio C Hamano 15 years ago
parent
commit
ee16339d04
  1. 5
      Makefile

5
Makefile

@ -1804,7 +1804,10 @@ dist: git.spec git-archive$(X) configure @@ -1804,7 +1804,10 @@ dist: git.spec git-archive$(X) configure
gzip -f -9 $(GIT_TARNAME).tar

rpm: dist
$(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
$(RPMBUILD) \
--define "_source_filedigest_algorithm md5" \
--define "_binary_filedigest_algorithm md5" \
-ta $(GIT_TARNAME).tar.gz

htmldocs = git-htmldocs-$(GIT_VERSION)
manpages = git-manpages-$(GIT_VERSION)

Loading…
Cancel
Save