From: Eric W. Biederman Date: Fri, 15 Jul 2005 01:20:25 +0000 (-0600) Subject: [PATCH] Add a RPMBUILD make variable X-Git-Tag: v0.99.1~8 X-Git-Url: https://git.octo.it/?p=git.git;a=commitdiff_plain;h=d7b8a164e4dff577f84eb89d6b1ac036ce973fc9 [PATCH] Add a RPMBUILD make variable This allows RPMBUILD to be overridden for people with old versions of rpm or people who want to pass rpmbuild extra options. Signed-off-by: Eric W. Biederman Signed-off-by: Linus Torvalds --- diff --git a/Makefile b/Makefile index 4bc3665f..34a54a86 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,7 @@ bin=$(prefix)/bin CC=gcc AR=ar INSTALL=install +RPMBUILD=rpmbuild # # sparse is architecture-neutral, which means that we need to tell it @@ -186,7 +187,7 @@ dist: git-core.spec git-tar-tree gzip -9 $(GIT_TARNAME).tar rpm: dist - rpmbuild -ta git-core-$(GIT_VERSION).tar.gz + $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz test: all $(MAKE) -C t/ all