search for: javac_work

Displaying 1 result from an estimated 1 matches for "javac_work".

Did you mean: javac_works
2008 Aug 29
2
Security issue with javareconf script (PR#12636)
...R 2.7.2. The following patch resolves the issue: diff -up R-2.7.2/src/scripts/javareconf.BAD R-2.7.1/src/scripts/javareconf --- R-2.7.2/src/scripts/javareconf.BAD 2008-08-29 11:04:21.000000000 -0400 +++ R-2.7.2/src/scripts/javareconf 2008-08-29 11:05:34.000000000 -0400 @@ -125,16 +125,17 @@ fi javac_works='not present' if test -n "$JAVAC"; then javac_works='not functional' - rm -rf /tmp/A.java /tmp/A.class - echo "public class A { }" > /tmp/A.java - if test -e /tmp/A.java; then - if "${JAVAC}" /tmp/A.java >/dev/null; then -...