-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b25
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2219369 | 8 | Kelly Ohair | P3 | Resolved | Fixed | b21 |
JDK-2219368 | 7u4 | Kelly Ohair | P3 | Closed | Fixed | b07 |
The line in the makefiles
MB_OF_MEMORY=$(shell /usr/sbin/prtconf | fgrep 'Memory size:' | expand | cut -d' ' -f3)
should be
MB_OF_MEMORY:=$(shell /usr/sbin/prtconf 2>/dev/null | fgrep 'Memory size:' | expand | cut -d' ' -f3)
1. Zones are being used to do builds, and prtconf errors out after sending out the memory size info.
2. Using := will have this evaluation done once instead of multiple times, each time it was used.
MB_OF_MEMORY=$(shell /usr/sbin/prtconf | fgrep 'Memory size:' | expand | cut -d' ' -f3)
should be
MB_OF_MEMORY:=$(shell /usr/sbin/prtconf 2>/dev/null | fgrep 'Memory size:' | expand | cut -d' ' -f3)
1. Zones are being used to do builds, and prtconf errors out after sending out the memory size info.
2. Using := will have this evaluation done once instead of multiple times, each time it was used.
- backported by
-
JDK-2219369 Build issue with prtconf and zones, also using := to avoid extra execs
-
- Resolved
-
-
JDK-2219368 Build issue with prtconf and zones, also using := to avoid extra execs
-
- Closed
-
- relates to
-
JDK-2206979 JDK7 still runs /etc/prtconf to find memory size
-
- Resolved
-