FreeBSD Bugzilla – Attachment 142260 Details for
Bug 189255
[patch] Mk/Scripts/qa.sh: look for libtool libraries
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
stage-qa.patch
stage-qa.patch (text/x-patch), 1.16 KB, created by
Tijl Coosemans
on 2014-05-02 19:31:09 UTC
(
hide
)
Description:
stage-qa.patch
Filename:
MIME Type:
Creator:
Tijl Coosemans
Created:
2014-05-02 19:31:09 UTC
Size:
1.16 KB
patch
obsolete
>Index: Mk/bsd.stage.mk >=================================================================== >--- Mk/bsd.stage.mk (revision 352745) >+++ Mk/bsd.stage.mk (working copy) >@@ -17,7 +17,10 @@ QA_ENV+= STAGEDIR=${STAGEDIR} \ > .if !empty(USES:Mdesktop-file-utils) > QA_ENV+= USESDESKTOPFILEUTILS=yes > .endif >-.if !empty(USES:Mdesktop-file-utils) >+.if !empty(USES:Mlibtool*) >+QA_ENV+= USESLIBTOOL=yes >+.endif >+.if !empty(USES:Mshared-mime-info) > QA_ENV+= USESSHAREDMIMEINFO=yes > .endif > CO_ENV+= STAGEDIR=${STAGEDIR} \ >Index: Mk/Scripts/qa.sh >=================================================================== >--- Mk/Scripts/qa.sh (revision 352745) >+++ Mk/Scripts/qa.sh (working copy) >@@ -172,7 +172,17 @@ suidfiles() { > return 0 > } > >-checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles" >+ltlibraries() { >+ if [ -z "${USESLIBTOOL}" ]; then >+ find ${STAGEDIR} -type f -name '*.la' | while read f; do >+ grep -q 'libtool library' "${f}" && >+ err "you need USES=libtool" && return 1 || true >+ done >+ # The return above continues here. >+ fi >+} >+ >+checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles ltlibraries" > > ret=0 > cd ${STAGEDIR}
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
Actions:
View
|
Diff
Attachments on
bug 189255
:
142259
| 142260 |
142261
|
142262