Changeset ferringb%2Fpkgcore-dev,3511
- Timestamp:
- 06/29/08 23:31:32 (2 months ago)
- Author:
- Brian Harring <ferringb@…>
- Message:
-
use has instead of hasq
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r3487
|
r3511
|
|
| 7 | 7 | |
| 8 | 8 | # exit if the feature isn't requested, or the restrict isn't there. |
| 9 | | hasq installsources ${FEATURES} || exit 0 |
| 10 | | hasq installsources ${RESTRICT} && exit 0 |
| | 9 | has installsources ${FEATURES} || exit 0 |
| | 10 | has installsources ${RESTRICT} && exit 0 |
| 11 | 11 | |
| 12 | 12 | for x in debugedit scanelf rsync sort; do |
| … |
… |
|
| 34 | 34 | # We want to log already stripped binaries, as this may be a QA violation. |
| 35 | 35 | # They prevent us from getting the splitdebug data. |
| 36 | | if ! hasq binchecks ${RESTRICT} && \ |
| 37 | | ! hasq strip ${RESTRICT} ; then |
| | 36 | if ! has binchecks ${RESTRICT} && \ |
| | 37 | ! has strip ${RESTRICT} ; then |
| 38 | 38 | f=$(scanelf -yqRBF '#k%F' -k '!.symtab' "$@") |
| 39 | 39 | if [[ -n ${f} ]] ; then |