From 6b8969200862aee911eb953f84bc63733472423b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 27 Mar 2015 18:00:32 -0400 Subject: [PATCH] Fix make build target. Thanks, Justin Geibel. --- Makefile | 2 +- debian/changelog | 1 + doc/bugs/package_build_fails_with_missing_man_directory.mdwn | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d6fb1a110e..b36cbcd02e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ mans=$(shell find doc -maxdepth 1 -name git-annex*.mdwn | sed -e 's/^doc/man/' -e 's/\.mdwn/\.1/') -all=git-annex $(mans) docs +all=git-annex mans docs CABAL?=cabal # set to "./Setup" if you lack a cabal program GHC?=ghc diff --git a/debian/changelog b/debian/changelog index e2bfe362c6..098d865c26 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ git-annex (5.20150328) UNRELEASED; urgency=medium that works for "git annex sync" as well as "git-annex sync". * Prevent git-ls-files from double-expanding wildcards when an unexpanded wildcard is passed to a git-annex command like add or find. + * Fix make build target. Thanks, Justin Geibel. -- Joey Hess Fri, 27 Mar 2015 16:04:43 -0400 diff --git a/doc/bugs/package_build_fails_with_missing_man_directory.mdwn b/doc/bugs/package_build_fails_with_missing_man_directory.mdwn index f3d557709b..03f1d36aaa 100644 --- a/doc/bugs/package_build_fails_with_missing_man_directory.mdwn +++ b/doc/bugs/package_build_fails_with_missing_man_directory.mdwn @@ -26,3 +26,5 @@ index d6fb1a1..b36cbcd 100644 CABAL?=cabal # set to "./Setup" if you lack a cabal program GHC?=ghc """]] + +> [[fixed|done]] --[[Joey]]