diff options
author | ade <ade@FreeBSD.org> | 2006-02-22 16:46:36 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2006-02-22 16:46:36 +0800 |
commit | e8d7b88bd0d8aee91f0f70a8ed5f2fc56b74a3d3 (patch) | |
tree | 1db46714cbc3cd820cfcd9ba324be3180d94b4d3 /net/samba3 | |
parent | b41e4126c941811a6a47f65c5470b68f82b6d7be (diff) | |
download | freebsd-ports-gnome-e8d7b88bd0d8aee91f0f70a8ed5f2fc56b74a3d3.tar.gz freebsd-ports-gnome-e8d7b88bd0d8aee91f0f70a8ed5f2fc56b74a3d3.tar.zst freebsd-ports-gnome-e8d7b88bd0d8aee91f0f70a8ed5f2fc56b74a3d3.zip |
Fix build of the slave port net/samba-libsmbclient in the case
where WRKDIRPREFIX is set.
PR: 93626
Submitted by: NIIMI Satoshi <sa2c@sa2c.net>
Approved by: maintainer
Diffstat (limited to 'net/samba3')
-rw-r--r-- | net/samba3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/samba3/Makefile b/net/samba3/Makefile index c6096360b3da..354d4ddca4d8 100644 --- a/net/samba3/Makefile +++ b/net/samba3/Makefile @@ -85,8 +85,8 @@ CONFIGURE_ARGS+= --disable-cups --without-winbind --without-syslog \ --without-pam --without-pam_smbpass --without-aio-support # Dirty hack to work around usage of OPTIONS in slave ports -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" +.if exists(${.CURDIR}/Makefile.inc) +.include "${.CURDIR}/Makefile.inc" .endif .else |