]> git.donarmstrong.com Git - lilypond.git/commitdiff
Git status check in "make dist": do not require bash
authorJohn Mandereau <john.mandereau@gmail.com>
Sat, 25 Aug 2012 07:49:53 +0000 (09:49 +0200)
committerJohn Mandereau <john.mandereau@gmail.com>
Sat, 25 Aug 2012 07:56:42 +0000 (09:56 +0200)
GNUmakefile.in

index 312eed4e5c0f99dc723ffbfef3855359cd080b93..ceeb410a618e67277c398da9827b4d051d0aa6a0 100644 (file)
@@ -40,7 +40,8 @@ include $(depth)/make/stepmake.make
 
 dist: local-dist $(GENERATED_BUILD_FILES) top-doc refresh-release-files .gitfilelist
        @cd $(top-src-dir) && \
-         if [[ `find . -name .git` && (`git diff HEAD` || `git status | grep -i "untracked"`) ]]; \
+         if test -n "`find . -name .git`" -a '(' -n "`git diff HEAD | head -1`" \
+           -o -n "`git status | grep -i untracked`" ')'; \
          then echo "***   dist must been rolled on a clean git tree;"; \
          echo "uncommitted changes or untracked files detected, aborting."; \
          exit 1; fi
@@ -51,7 +52,7 @@ dist: local-dist $(GENERATED_BUILD_FILES) top-doc refresh-release-files .gitfile
        $(LN) $(TOPDOC_TXT_FILES) $(distdir)
        $(LN) $(GENERATED_BUILD_FILES:%=$(src-dir)/%) .gitfilelist $(distdir)
        cd $(top-src-dir) && xargs $(buildscript-dir)/mass-link hard . $(distdir) <$(top-build-dir)/.gitfilelist
-       if [[ `find $(top-src-dir) -name .git` ]]; then \
+       if test -n "`find $(top-src-dir) -name .git`"; then \
          COMMIT_DATE=`git --git-dir=$(top-src-dir)/.git log -1 --format=%cD`; \
          find $(distdir) | xargs touch -d "$$COMMIT_DATE"; fi
        (cd ./$(depth)/$(outdir); $(TAR) -cf -  --owner=0 --group=0 $(DIST_NAME) | gzip -9 > $(DIST_NAME).tar.gz)