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
|
{- Some helper functions are used to build up SubCmdSeek and SubCmdStart
|
||||||
- functions. -}
|
- functions. -}
|
||||||
type SubCmdSeekStrings = SubCmdStartString -> SubCmdSeek
|
type SubCmdSeekStrings = SubCmdStartString -> SubCmdSeek
|
||||||
type SubCmdSeekBackendFiles = SubCmdStartBackendFile -> SubCmdSeek
|
|
||||||
type SubCmdStartString = String -> SubCmdStart
|
type SubCmdStartString = String -> SubCmdStart
|
||||||
|
type SubCmdSeekBackendFiles = SubCmdStartBackendFile -> SubCmdSeek
|
||||||
type SubCmdStartBackendFile = (FilePath, Maybe Backend) -> SubCmdStart
|
type SubCmdStartBackendFile = (FilePath, Maybe Backend) -> SubCmdStart
|
||||||
|
|
||||||
data SubCommand = SubCommand {
|
data SubCommand = SubCommand {
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -11,7 +11,7 @@ install:
|
||||||
# If ikiwiki is available, build static html docs suitable for being
|
# If ikiwiki is available, build static html docs suitable for being
|
||||||
# shipped in the software package.
|
# shipped in the software package.
|
||||||
ifeq ($(shell which ikiwiki),)
|
ifeq ($(shell which ikiwiki),)
|
||||||
IKIWIKI=echo "** ikiwiki not found, skipping building docs" >&2
|
IKIWIKI=@echo "** ikiwiki not found, skipping building docs" >&2; true
|
||||||
else
|
else
|
||||||
IKIWIKI=ikiwiki
|
IKIWIKI=ikiwiki
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue