diff options
author | David Kastrup <dak@gnu.org> | 2014-08-17 10:14:44 +0200 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2014-08-17 10:14:44 +0200 |
commit | ba7200be0b203092998fb456c5fba3ee92492c5d (patch) | |
tree | e0b0eea8bd14ea12ca80c22d9685c392696f07b7 /scripts | |
parent | 7c5d2c45feb73e761b30e3f4191e60b8df77e622 (diff) |
Fix issue 3826
Commit 2d3a5d87166caa13feb036e23086b0d4f23283f4 let
scripts/auxiliar/update-with-convert-ly.sh call the non-existent
Makefile target "make pythonmodules" instead of "make python-modules".
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auxiliar/update-with-convert-ly.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/auxiliar/update-with-convert-ly.sh b/scripts/auxiliar/update-with-convert-ly.sh index 7f40b63fb8..bb51d83e41 100755 --- a/scripts/auxiliar/update-with-convert-ly.sh +++ b/scripts/auxiliar/update-with-convert-ly.sh @@ -14,7 +14,7 @@ fi ### make sure convert-ly is up-to-date cd $BUILD_DIR -make pythonmodules +make python-modules cd $TOP_SRC_DIR ### update manuals |