From 2d3a5d87166caa13feb036e23086b0d4f23283f4 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Mon, 27 Jan 2014 12:57:43 +0100 Subject: [PATCH] Issue 3826: Stop scripts/auxiliar/update-with-convert-ly.sh from doing a full make It is quite a nuisance for writing convert-ly rules that scripts/auxiliar/update-with-convert-ly runs a full make since any partly successful run of update-with-convert-ly will cause large delays. It also leads to a paradoxical situation when the syntax of some files needs to be converted _before_ a full make has a chance to succeed. So this patch reduces the preliminary make to "make pythonmodules" which should be sufficient for updating from convertrules.py changes. --- scripts/auxiliar/update-with-convert-ly.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/auxiliar/update-with-convert-ly.sh b/scripts/auxiliar/update-with-convert-ly.sh index b5afdfd639..7f40b63fb8 100755 --- a/scripts/auxiliar/update-with-convert-ly.sh +++ b/scripts/auxiliar/update-with-convert-ly.sh @@ -13,10 +13,8 @@ if [ -z $BUILD_DIR ]; then fi ### make sure convert-ly is up-to-date -touch python/convertrules.py -touch scripts/convert-ly.py cd $BUILD_DIR -make +make pythonmodules cd $TOP_SRC_DIR ### update manuals -- 2.39.2