]> git.donarmstrong.com Git - lilypond.git/commitdiff
Build: dist fix.
authorGraham Percival <graham@percival-music.ca>
Fri, 13 Aug 2010 19:07:51 +0000 (20:07 +0100)
committerGraham Percival <graham@percival-music.ca>
Fri, 13 Aug 2010 19:07:51 +0000 (20:07 +0100)
scripts/auxiliar/GNUmakefile
scripts/auxiliar/update-patch-version [deleted file]
scripts/auxiliar/update-patch-version.sh [new file with mode: 0755]

index 4ac41794bac106751aefeb6a53886b3dd594fada..910e6b1ab59c42c8048e30416010e16b8af0566b 100644 (file)
@@ -3,6 +3,7 @@ depth=../..
 EXTRA_DIST_FILES = $(call src-wildcard,*.sh) $(call src-wildcard,*.py)
 EXTRA_DIST_FILES += pfx2ttf.fontforge
 EXTRA_DIST_FILES += lily-git.tcl
+EXTRA_DIST_FILES += update-patch-version.sh
 
 include $(depth)/make/stepmake.make
 
diff --git a/scripts/auxiliar/update-patch-version b/scripts/auxiliar/update-patch-version
deleted file mode 100755 (executable)
index ac30788..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/bash
-#
-#  Update the version number in lilypond snippets without running convert-ly
-#   on the snippets
-#  Note: this does not change anything but the version number, and it will only
-#   change the specified version number
-#
-#  This is useful when a patch containing a number of snippets (due to a change
-#   in syntax) has not completed review before a new development release
-#   is made.
-#
-#  Usage: update-patch-version old-version new-version
-
-if [ $# -ne 2 ] # need exactly 2 arguments
-then
-  echo "Usage:  update-patch-version old-version new-version"
-  exit 1
-fi
-
-git grep --name-only $1 | xargs sed -i -e s/$1/$2/g
-
diff --git a/scripts/auxiliar/update-patch-version.sh b/scripts/auxiliar/update-patch-version.sh
new file mode 100755 (executable)
index 0000000..ac30788
--- /dev/null
@@ -0,0 +1,21 @@
+#! /bin/bash
+#
+#  Update the version number in lilypond snippets without running convert-ly
+#   on the snippets
+#  Note: this does not change anything but the version number, and it will only
+#   change the specified version number
+#
+#  This is useful when a patch containing a number of snippets (due to a change
+#   in syntax) has not completed review before a new development release
+#   is made.
+#
+#  Usage: update-patch-version old-version new-version
+
+if [ $# -ne 2 ] # need exactly 2 arguments
+then
+  echo "Usage:  update-patch-version old-version new-version"
+  exit 1
+fi
+
+git grep --name-only $1 | xargs sed -i -e s/$1/$2/g
+