PROCESSOR_IDENTIFIER: command not found

Alan Bateman Alan.Bateman at oracle.com
Mon Jun 7 18:57:29 UTC 2010


Kelly O'Hair wrote:
> :
>
> Anyone care to be the reviewer?
>
> 6959116: Fix regression in make/jdk_generic_profile.sh 
> (PROCESSOR_IDENTIFIER)
>
> diff --git a/make/jdk_generic_profile.sh b/make/jdk_generic_profile.sh
> --- a/make/jdk_generic_profile.sh
> +++ b/make/jdk_generic_profile.sh
> @@ -174,7 +174,7 @@
>
>    # Check CYGWIN (should have already been done)
>    #   Assumption here is that you are in a shell window via cygwin.
> -  proc_arch=`echo "$(PROCESSOR_IDENTIFIER)" | expand | cut -d' ' -f1 
> | sed -e 's at x86@X86 at g' -e 's at Intel64@X64 at g' -e 's at em64t@X64 at g' -e 
> 's at EM64T@X64 at g' -e 's at amd64@X64 at g' -e 's at AMD64@X64 at g' -e 's at ia64@IA64 at g'`
> +  proc_arch=`echo "${PROCESSOR_IDENTIFIER}" | expand | cut -d' ' -f1 
> | sed -e 's at x86@X86 at g' -e 's at Intel64@X64 at g' -e 's at em64t@X64 at g' -e 
> 's at EM64T@X64 at g' -e 's at amd64@X64 at g' -e 's at AMD64@X64 at g' -e 's at ia64@IA64 at g'`
>    if [ "${proc_arch}" = "X64" ] ; then
>      windows_arch=amd64
>    else
>
>
> -kto
If you are still looking for a reviewer then the above looks fine to me.

-Alan.



More information about the build-dev mailing list