FreeBSD Bugzilla – Attachment 184305 Details for
Bug 220054
Mk/bsd.java.mk: Use POSIX-compliant regular expressions with grep(1)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
svn(1) diff for exp-run
java.diff (text/plain), 2.51 KB, created by
Kyle Evans
on 2017-07-12 14:35:33 UTC
(
hide
)
Description:
svn(1) diff for exp-run
Filename:
MIME Type:
Creator:
Kyle Evans
Created:
2017-07-12 14:35:33 UTC
Size:
2.51 KB
patch
obsolete
>Index: Mk/bsd.java.mk >=================================================================== >--- Mk/bsd.java.mk (revision 444772) >+++ Mk/bsd.java.mk (working copy) >@@ -214,44 +214,30 @@ > > # Error checking: JAVA_VERSION > .if !defined(_JAVA_VERSION_LIST_REGEXP) >-. for v in ${_JAVA_VERSION_LIST} >-. if defined(_JAVA_VERSION_LIST_REGEXP) >-_JAVA_VERSION_LIST_REGEXP:= ${_JAVA_VERSION_LIST_REGEXP}\| >-. endif >-_JAVA_VERSION_LIST_REGEXP:= ${_JAVA_VERSION_LIST_REGEXP}$v >-. endfor >+_JAVA_VERSION_LIST_REGEXP= ${_JAVA_VERSION_LIST:C/\+/\\+/:ts|} > .endif > >- > check-makevars:: >- @test ! -z "${JAVA_VERSION}" && ( ${ECHO_CMD} "${JAVA_VERSION}" | ${TR} " " "\n" | ${GREP} -q "${_JAVA_VERSION_LIST_REGEXP}" || \ >+ @test ! -z "${JAVA_VERSION}" && ( ${ECHO_CMD} "${JAVA_VERSION}" | ${TR} " " "\n" | ${GREP} -Eq "${_JAVA_VERSION_LIST_REGEXP}" || \ > (${ECHO_CMD} "${PKGNAME}: Makefile error: \"${JAVA_VERSION}\" is not a valid value for JAVA_VERSION. It should be one or more of: ${__JAVA_VERSION_LIST} (with an optional \"+\" suffix.)"; ${FALSE})) || true > > # Error checking: JAVA_VENDOR > .if !defined(_JAVA_VENDOR_LIST_REGEXP) >-. for v in ${_JAVA_VENDOR_LIST} >-. if defined(_JAVA_VENDOR_LIST_REGEXP) >-_JAVA_VENDOR_LIST_REGEXP:= ${_JAVA_VENDOR_LIST_REGEXP}\| >-. endif >-_JAVA_VENDOR_LIST_REGEXP:= ${_JAVA_VENDOR_LIST_REGEXP}$v >-. endfor >+_JAVA_VENDOR_LIST_REGEXP= ${_JAVA_VENDOR_LIST:ts|} > .endif >+ > check-makevars:: >- @test ! -z "${JAVA_VENDOR}" && ( ${ECHO_CMD} "${JAVA_VENDOR}" | ${TR} " " "\n" | ${GREP} -q "${_JAVA_VENDOR_LIST_REGEXP}" || \ >+ @test ! -z "${JAVA_VENDOR}" && ( ${ECHO_CMD} "${JAVA_VENDOR}" | ${TR} " " "\n" | ${GREP} -Eq "${_JAVA_VENDOR_LIST_REGEXP}" || \ > (${ECHO_CMD} "${PKGNAME}: Makefile error: \"${JAVA_VENDOR}\" is not a valid value for JAVA_VENDOR. It should be one or more of: ${_JAVA_VENDOR_LIST}"; \ > ${FALSE})) || true > > # Error checking: JAVA_OS > .if !defined(_JAVA_OS_LIST_REGEXP) >-. for v in ${_JAVA_OS_LIST} >-. if defined(_JAVA_OS_LIST_REGEXP) >-_JAVA_OS_LIST_REGEXP:= ${_JAVA_OS_LIST_REGEXP}\| >-. endif >-_JAVA_OS_LIST_REGEXP:= ${_JAVA_OS_LIST_REGEXP}$v >-. endfor >+_JAVA_OS_LIST_REGEXP= ${_JAVA_OS_LIST:ts|} > .endif >+ > check-makevars:: >- @test ! -z "${JAVA_OS}" && ( ${ECHO_CMD} "${JAVA_OS}" | ${TR} " " "\n" | ${GREP} -q "${_JAVA_OS_LIST_REGEXP}" || \ >+ @test ! -z "${JAVA_OS}" && ( ${ECHO_CMD} "${JAVA_OS}" | ${TR} " " "\n" | ${GREP} -Eq "${_JAVA_OS_LIST_REGEXP}" || \ > (${ECHO_CMD} "${PKGNAME}: Makefile error: \"${JAVA_OS}\" is not a valid value for JAVA_OS. It should be one or more of: ${_JAVA_OS_LIST}"; \ > ${FALSE})) || true >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
koobs
:
maintainer-approval?
(
java
)
koobs
:
maintainer-approval?
(
portmgr
)
Actions:
View
|
Diff
Attachments on
bug 220054
:
183541
|
183826
| 184305