diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2005-07-14 19:20:25 -0600 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-15 11:38:24 -0700 |
commit | d7b8a164e4dff577f84eb89d6b1ac036ce973fc9 (patch) | |
tree | b8c45f1cace23f24938bb140e5ac77d937d202e2 | |
parent | [PATCH] Update tags to record who made them (diff) | |
download | tgif-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-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |