|
Lines 775-781
Link Here
|
| 775 |
# CONFIGURE_TARGET |
775 |
# CONFIGURE_TARGET |
| 776 |
# - The name of target to call when GNU_CONFIGURE is |
776 |
# - The name of target to call when GNU_CONFIGURE is |
| 777 |
# defined. |
777 |
# defined. |
| 778 |
# Default: ${MACHINE_ARCH}-portbld-freebsd${OSREL} |
778 |
# Default: ${ARCH}-portbld-freebsd${OSREL} |
| 779 |
# CONFIGURE_ARGS |
779 |
# CONFIGURE_ARGS |
| 780 |
# - Pass these args to configure if ${HAS_CONFIGURE} is set. |
780 |
# - Pass these args to configure if ${HAS_CONFIGURE} is set. |
| 781 |
# Default: "--prefix=${PREFIX} ${CONFIGURE_TARGET}" if |
781 |
# Default: "--prefix=${PREFIX} ${CONFIGURE_TARGET}" if |
|
Lines 2651-2657
Link Here
|
| 2651 |
.endif |
2651 |
.endif |
| 2652 |
|
2652 |
|
| 2653 |
CONFIGURE_SCRIPT?= configure |
2653 |
CONFIGURE_SCRIPT?= configure |
| 2654 |
CONFIGURE_TARGET?= ${MACHINE_ARCH}-portbld-freebsd${OSREL} |
2654 |
CONFIGURE_TARGET?= ${ARCH}-portbld-freebsd${OSREL} |
| 2655 |
CONFIGURE_LOG?= config.log |
2655 |
CONFIGURE_LOG?= config.log |
| 2656 |
|
2656 |
|
| 2657 |
# A default message to print if do-configure fails. |
2657 |
# A default message to print if do-configure fails. |
|
Lines 2830-2836
Link Here
|
| 2830 |
|
2830 |
|
| 2831 |
.if defined(ONLY_FOR_ARCHS) |
2831 |
.if defined(ONLY_FOR_ARCHS) |
| 2832 |
.for __ARCH in ${ONLY_FOR_ARCHS} |
2832 |
.for __ARCH in ${ONLY_FOR_ARCHS} |
| 2833 |
.if ${MACHINE_ARCH:M${__ARCH}} != "" |
2833 |
.if ${ARCH:M${__ARCH}} != "" |
| 2834 |
__ARCH_OK?= 1 |
2834 |
__ARCH_OK?= 1 |
| 2835 |
.endif |
2835 |
.endif |
| 2836 |
.endfor |
2836 |
.endfor |
|
Lines 2840-2846
Link Here
|
| 2840 |
|
2840 |
|
| 2841 |
.if defined(NOT_FOR_ARCHS) |
2841 |
.if defined(NOT_FOR_ARCHS) |
| 2842 |
.for __NARCH in ${NOT_FOR_ARCHS} |
2842 |
.for __NARCH in ${NOT_FOR_ARCHS} |
| 2843 |
.if ${MACHINE_ARCH:M${__NARCH}} != "" |
2843 |
.if ${ARCH:M${__NARCH}} != "" |
| 2844 |
.undef __ARCH_OK |
2844 |
.undef __ARCH_OK |
| 2845 |
.endif |
2845 |
.endif |
| 2846 |
.endfor |
2846 |
.endfor |