summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-03-27 18:00:32 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-03-27 18:00:32 -0400
commitcc20205e5a37b1e2131598e880b1525b1c7dd731 (patch)
treebcae2c1591c013a832528abb1167839d13c10e03
parentab180331853ad7942cd9d329d049a73a034e0ab9 (diff)
Fix make build target. Thanks, Justin Geibel.
-rw-r--r--Makefile2
-rw-r--r--debian/changelog1
-rw-r--r--doc/bugs/package_build_fails_with_missing_man_directory.mdwn2
3 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d6fb1a110..b36cbcd02 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 e2bfe362c..098d865c2 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 <id@joeyh.name> 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 f3d557709..03f1d36aa 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]]