From 12ca9d7b09cd235ad16ab0ecfe54f993846083db Mon Sep 17 00:00:00 2001 From: jochen Date: Thu, 15 Jul 1999 13:00:59 +0000 Subject: [PATCH] fixed some small things git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1077 379699f6-c40d-0410-875b-85095c16579e --- jode/javacWithDeps.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/javacWithDeps.sh.in b/jode/javacWithDeps.sh.in index 5633e87..2792a77 100644 --- a/jode/javacWithDeps.sh.in +++ b/jode/javacWithDeps.sh.in @@ -9,7 +9,7 @@ if [ "$JAVAC" = "$JIKES" -a -n "$PERL" ]; then TEMPDEPS=`mktemp "deps.XXXXXX"` trap "rm $TEMPDEPS" EXIT $JAVAC +M=$TEMPDEPS $* - sort $TEMPDEPS | $PERL -ne 's"^(\Q'$top_srcdir'\E|\Q'$top_builddir'\E)"'$abs_top_builddir'"; s": (\Q'$top_srcdir'\E|\Q'$top_builddir'\E)": '$abs_top_srcdir'"; m"([^\.:]+)\.class: \Q'$abs_top_srcdir'\E[^\.]*.java$" or next; if ($1 ne $last) { $last = $1; open DEP, ">$1.u" }; print DEP $_' + sort $TEMPDEPS | $PERL -ne 's"^(\Q'$top_srcdir'\E|\Q'$top_builddir'\E)"'$abs_top_builddir'"; s": \Q'$top_srcdir'\E": '$abs_top_srcdir'"; s": \Q'$top_builddir'\E": '$abs_top_builddir'"; m"(\Q'$abs_top_builddir'\E[^\.:]+)\.class: [^\.]*.java$" or next; if ($1 ne $last) { $last = $1; open DEP, ">$1.u" }; print DEP $_' else $JAVAC $* fi