From: Simon Ruderich Date: Sat, 21 Feb 2009 22:27:08 +0000 (-0600) Subject: Fix leaking a variable in lib.sh. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=f8404b8badbb07ea82dd043127838fd7ef562ba9 Fix leaking a variable in lib.sh. --- diff --git a/lib.sh b/lib.sh index e222da4..582e1cf 100644 --- a/lib.sh +++ b/lib.sh @@ -70,4 +70,6 @@ m4() { # Process $1.m4 with m4 using the given options. echo "m4(): generating '$file' from '$file.m4' with options '$*'" $m4 $* $file.m4 >> $file + + unset file }