From: fred Date: Wed, 9 Oct 1996 11:16:58 +0000 (+0000) Subject: lilypond-0.0.2 X-Git-Tag: release/1.5.59~7136 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f4fc7ea59ba453576141e9ce103ee3c85b80cc23;p=lilypond.git lilypond-0.0.2 --- diff --git a/make_patch b/make_patch new file mode 100755 index 0000000000..08420639d6 --- /dev/null +++ b/make_patch @@ -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