Code

Makefile: Ensure rpm packages can be read by older rpm versions
authorTodd Zullinger <tmz@pobox.com>
Wed, 11 Nov 2009 21:59:52 +0000 (16:59 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sat, 14 Nov 2009 23:52:39 +0000 (15:52 -0800)
The kernel.org hosts where the packages are built are now using Fedora
11, which defaults to sha256 for file digests instead of md5.  Older
versions of rpm can not handle these packages.  Tell rpmbuild to use md5
file digests for better compatibility.

Signed-off-by: Todd Zullinger <tmz@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile

index fea237bc80978c1011793ee0cbd8398b2e9f773b..fd7a6c9294c341353fc5904494a3e69946cff761 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1799,7 +1799,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)