commit:     939dde2db13c1bcc327e9e2420043ea2ed7dbe0d
Author:     Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 20 01:57:49 2015 +0000
Commit:     Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Thu Aug 20 01:57:49 2015 +0000
URL:        https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=939dde2d

ugh, fix ordering issue that couldn't be solved with quotes

 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index dafda0e..7f79e4f 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ check-git-repository:
        git diff --quiet || { echo 'STOP, you have uncommitted changes in the 
working directory' ; false ; }
        git diff --cached --quiet || { echo 'STOP, you have uncommitted changes 
in the index' ; false ; }
 
-dist: check-git-repository $(EXTRA_DIST) distclean
+dist: check-git-repository distclean $(EXTRA_DIST)
        mkdir "$(distdir)"
        git ls-files -z | xargs -0 cp --no-dereference --parents 
--target-directory="$(distdir)" \
                $(EXTRA_DIST)

Reply via email to