mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
f4fa763b69
Changes: * Backport changes from emulators/i386-wine-devel * Fix CONFLICTS_INSTALL [1] Approved by: gerald [1]
17 lines
375 B
Makefile
17 lines
375 B
Makefile
# Created by: David Naylor (dbn@FreeBSD.org)
|
|
# $FreeBSD$
|
|
|
|
# Special bootstrapper to allow:
|
|
# - i386 specific port to be slave to ${PORTSDIR}/emulators/wine
|
|
# - amd64 specific port to be normal port (based on binary package)
|
|
|
|
.if !defined(ARCH)
|
|
ARCH!= uname -p
|
|
.endif
|
|
|
|
.if ${ARCH} == i386
|
|
.include "${.CURDIR}/Makefile.i386"
|
|
.else
|
|
.include "${.CURDIR}/Makefile.inc"
|
|
.endif
|