From 7e2ccbbc5144106a12b5f635239f7f7fb9c6394a Mon Sep 17 00:00:00 2001 From: Deepak Saxena Date: Fri, 19 Dec 2008 12:56:49 -0500 Subject: Do not build RPM if changes are not commited This is a safety precaution to ensure that two RPMS with the same commit hash are not built out of differing source trees. All changes must be commited, creating a new commit ID, or discarded before an RPM can be built. Signed-off-by: Deepak Saxena --- olpc/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/olpc/Makefile b/olpc/Makefile index 55991eacfcd3..c1a7751598a9 100644 --- a/olpc/Makefile +++ b/olpc/Makefile @@ -49,7 +49,13 @@ $(RPMCONFIGFILE) : $(CONFIG_SRC) # Create a tarball out of the gittree # $(TARBALL): - make distclean; \ + @make distclean; \ + git-status | grep --quiet modified || git-status | grep --quiet Untracked; \ + if [ $$? -eq 0 ]; then \ + echo "*** TREE IS NOT CLEAN. PLEASE COMMMIT CHANGES FIRST ***"; \ + git-status; \ + exit -1;\ + fi; \ mkdir -p $(SOURCESDIR); \ cd $(SOURCESDIR); \ ln -s $(srctree) $(KERNELDIR); \ -- cgit v1.2.3