git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Build RPMs locally unless overruled in ~/.rpmmacros
@ 2009-03-30 15:10 Niels Basjes
  2009-04-02  6:47 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Niels Basjes @ 2009-03-30 15:10 UTC (permalink / raw)
  To: git; +Cc: Niels Basjes

From: Niels Basjes <niels@basjes.nl>

Signed-off-by: Niels Basjes <niels@basjes.nl>
---
 .gitignore |    1 +
 Makefile   |    8 +++++++-
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/.gitignore b/.gitignore
index 1c57d4c..2f2554b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -173,3 +173,4 @@ configure
 tags
 TAGS
 cscope*
+RPM_BUILDING
diff --git a/Makefile b/Makefile
index 7867eac..ad5a1f7 100644
--- a/Makefile
+++ b/Makefile
@@ -242,7 +242,13 @@ RM = rm -f
 TAR = tar
 FIND = find
 INSTALL = install
-RPMBUILD = rpmbuild
+RPMBUILDOPTS = $(shell if [ "`grep '^%_topdir' $(HOME)/.rpmmacros`" == "" ];        \
+                       then                                                         \
+                           mkdir -p RPM_BUILDING/{BUILD,RPMS,SOURCES,SPECS,SRPMS};  \
+                           echo '--define="_topdir `pwd`/RPM_BUILDING"' ;           \
+                       fi                                                           \
+                )
+RPMBUILD = rpmbuild $(RPMBUILDOPTS)
 TCL_PATH = tclsh
 TCLTK_PATH = wish
 PTHREAD_LIBS = -lpthread
-- 
1.6.1.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-04-02  6:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-30 15:10 [PATCH] Build RPMs locally unless overruled in ~/.rpmmacros Niels Basjes
2009-04-02  6:47 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).