pretend jedit is up-to-date if this is not a repository -- avoid accidental build attempts after touching files etc.;
authorwenzelm
Sun, 22 Apr 2012 16:32:26 +0200
changeset 47666 cf5fe7eb6793
parent 47665 2cbf029abca9
child 47673 dd253cfa5b23
pretend jedit is up-to-date if this is not a repository -- avoid accidental build attempts after touching files etc.;
src/Tools/jEdit/lib/Tools/jedit
--- a/src/Tools/jEdit/lib/Tools/jedit	Sun Apr 22 16:08:10 2012 +0200
+++ b/src/Tools/jEdit/lib/Tools/jedit	Sun Apr 22 16:32:26 2012 +0200
@@ -189,8 +189,10 @@
   else
     if [ -n "$ISABELLE_JEDIT_BUILD_HOME" ]; then
       declare -a DEPS=("$JEDIT_JAR" "${JEDIT_JARS[@]}" "$PURE_JAR" "${SOURCES[@]}" "${RESOURCES[@]}")
+    elif [ -e "$ISABELLE_HOME/Admin/build" ]; then
+      declare -a DEPS=("$PURE_JAR" "${SOURCES[@]}" "${RESOURCES[@]}")
     else
-      declare -a DEPS=("$PURE_JAR" "${SOURCES[@]}" "${RESOURCES[@]}")
+      declare -a DEPS=()
     fi
     for DEP in "${DEPS[@]}"
     do