From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 442D31397EC for ; Thu, 20 Aug 2015 01:58:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 005E414179; Thu, 20 Aug 2015 01:58:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C22114179 for ; Thu, 20 Aug 2015 01:58:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1380D3409C7 for ; Thu, 20 Aug 2015 01:58:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4073153 for ; Thu, 20 Aug 2015 01:58:29 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1440035869.939dde2db13c1bcc327e9e2420043ea2ed7dbe0d.zerochaos@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 939dde2db13c1bcc327e9e2420043ea2ed7dbe0d X-VCS-Branch: master Date: Thu, 20 Aug 2015 01:58:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5aa50edb-4165-4b0b-9d2d-397f80940af7 X-Archives-Hash: d9a08bd39f7e0632e5e1793b25e5c9ef commit: 939dde2db13c1bcc327e9e2420043ea2ed7dbe0d Author: Rick Farina (Zero_Chaos) gentoo org> AuthorDate: Thu Aug 20 01:57:49 2015 +0000 Commit: Richard Farina gentoo 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)