diff options
author | Phil Holmes <mail@philholmes.net> | 2016-08-02 15:59:04 +0100 |
---|---|---|
committer | Phil Holmes <mail@philholmes.net> | 2016-08-02 15:59:44 +0100 |
commit | 6cceacc45f484426b17798cf15d79a48ec12141d (patch) | |
tree | b142dad0cf52c5abb5d7a9981573fc274ac5b8d1 | |
parent | 82ea5be7a20019d27f35d2103c2b793baf570f00 (diff) |
Issue 4853 - correct make syntax in CG
-rw-r--r-- | Documentation/contributor/programming-work.itexi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/contributor/programming-work.itexi b/Documentation/contributor/programming-work.itexi index 6a608f01e8..4b0b43dad4 100644 --- a/Documentation/contributor/programming-work.itexi +++ b/Documentation/contributor/programming-work.itexi @@ -1222,7 +1222,7 @@ achieve this by configuring with The executable code of LilyPond must be rebuilt from scratch: @example -make -C lily clean && make -C lily +make clean && make @end example @item Create a graphviz-compatible @file{.ly} file @@ -1269,7 +1269,7 @@ than normal. The original configuration can be restored by rerunning rebuild LilyPond with @example -make -C lily clean && make -C lily +make clean && make @end example |