]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.2
authorfred <fred>
Wed, 9 Oct 1996 11:16:58 +0000 (11:16 +0000)
committerfred <fred>
Wed, 9 Oct 1996 11:16:58 +0000 (11:16 +0000)
make_patch [new file with mode: 0755]

diff --git a/make_patch b/make_patch
new file mode 100755 (executable)
index 0000000..0842063
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+old=$1
+new=$2
+nm=$3
+if [ ! -x  $nm$new ]
+then
+   echo untarring ..
+  tar zfxv $nm$new.tar.gz
+fi
+if [ ! -x  $nm$old ]
+then
+   echo untarring
+   tar zfxv $nm$old.tar.gz
+fi
+
+(cd $nm$old; make clean)
+(cd $nm$new; make clean)
+(cd $nm$new; diff -P -c  ../$nm$old . > ../patch-$new)
+rm -rf $nm$old