better message when ikiwiki is not available
This commit is contained in:
parent
82d5a46c56
commit
e379307900
2 changed files with 2 additions and 2 deletions
|
@ -47,8 +47,8 @@ type SubCmdCleanup = Annex Bool
|
|||
{- Some helper functions are used to build up SubCmdSeek and SubCmdStart
|
||||
- functions. -}
|
||||
type SubCmdSeekStrings = SubCmdStartString -> SubCmdSeek
|
||||
type SubCmdSeekBackendFiles = SubCmdStartBackendFile -> SubCmdSeek
|
||||
type SubCmdStartString = String -> SubCmdStart
|
||||
type SubCmdSeekBackendFiles = SubCmdStartBackendFile -> SubCmdSeek
|
||||
type SubCmdStartBackendFile = (FilePath, Maybe Backend) -> SubCmdStart
|
||||
|
||||
data SubCommand = SubCommand {
|
||||
|
|
2
Makefile
2
Makefile
|
@ -11,7 +11,7 @@ install:
|
|||
# If ikiwiki is available, build static html docs suitable for being
|
||||
# shipped in the software package.
|
||||
ifeq ($(shell which ikiwiki),)
|
||||
IKIWIKI=echo "** ikiwiki not found, skipping building docs" >&2
|
||||
IKIWIKI=@echo "** ikiwiki not found, skipping building docs" >&2; true
|
||||
else
|
||||
IKIWIKI=ikiwiki
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue