diff options
author | Julien Rioux <julien.rioux@gmail.com> | 2013-07-16 14:34:13 +0200 |
---|---|---|
committer | Julien Rioux <jrioux@physics.utoronto.ca> | 2013-07-24 17:26:28 -0400 |
commit | 7598ad13fa727cce331bfcf944eb7e9cd224a19e (patch) | |
tree | f4cdcaf80a4aad935191e92f073a80686c6549b0 /make | |
parent | 10218a6a784ad4d48a64a9bee1e391d64621d8fc (diff) |
Build: Search out dir before src dir (issue 3121).
Diffstat (limited to 'make')
-rw-r--r-- | make/lilypond-vars.make | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/lilypond-vars.make b/make/lilypond-vars.make index 5c5e1efe3e..985197a4db 100644 --- a/make/lilypond-vars.make +++ b/make/lilypond-vars.make @@ -27,10 +27,10 @@ MUSICXML2LY = $(script-dir)/musicxml2ly.py CONVERT_LY = $(script-dir)/convert-ly.py LILYPOND_BOOK = $(script-dir)/lilypond-book.py -LILYPOND_BOOK_INCLUDES = -I $(src-dir)/ -I $(outdir) -I $(input-dir) \ +LILYPOND_BOOK_INCLUDES = -I $(outdir) -I $(src-dir) -I $(input-dir) \ -I $(top-src-dir)/Documentation -I $(top-build-dir)/Documentation/snippets/out \ -I $(input-dir)/regression/ -I $(top-src-dir)/Documentation/included/ \ - -I $(top-build-dir)/mf/$(outconfbase)/ \ + -I $(top-build-dir)/mf/$(outconfbase)/ \ -I $(top-build-dir)/mf/out/ \ -I $(top-src-dir)/Documentation/pictures \ -I $(top-build-dir)/Documentation/pictures/$(outdir) |