-
Bug
-
Resolution: Fixed
-
P4
-
7
-
b01
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2177177 | 7 | Kelly Ohair | P3 | Closed | Fixed | b31 |
JDK-2172707 | 6u14 | Kelly Ohair | P3 | Closed | Fixed | b01 |
Minor fix in make/linux/makefiles/buildtree.make
echo "if ! \$${JAVA_HOME}/bin/java $(JAVA_FLAG) -fullversion 2>1 > /dev/null"; \
should be
echo "if ! \$${JAVA_HOME}/bin/java $(JAVA_FLAG) -fullversion 2>&1 > /dev/null"; \
(s/2>1/2>&1/), so we send stderr to stdout instead of creating a file named "1". Sorry for missing that last time.
echo "if ! \$${JAVA_HOME}/bin/java $(JAVA_FLAG) -fullversion 2>1 > /dev/null"; \
should be
echo "if ! \$${JAVA_HOME}/bin/java $(JAVA_FLAG) -fullversion 2>&1 > /dev/null"; \
(s/2>1/2>&1/), so we send stderr to stdout instead of creating a file named "1". Sorry for missing that last time.
- backported by
-
JDK-2172707 Fix shell command that gets java version (uses 2>1)
- Closed
-
JDK-2177177 Fix shell command that gets java version (uses 2>1)
- Closed