summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Eric W. Biederman <ebiederm@xmission.com>2005-07-14 19:20:25 -0600
committerLibravatar Linus Torvalds <torvalds@g5.osdl.org>2005-07-15 11:38:24 -0700
commitd7b8a164e4dff577f84eb89d6b1ac036ce973fc9 (patch)
treeb8c45f1cace23f24938bb140e5ac77d937d202e2
parent[PATCH] Update tags to record who made them (diff)
downloadtgif-d7b8a164e4dff577f84eb89d6b1ac036ce973fc9.tar.xz
[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 <ebiederm@xmission.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4bc3665f2d..34a54a8633 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