Skip to content

Commit

Permalink
net/samba419: Fix procfd search patterns for FreeBSD
Browse files Browse the repository at this point in the history
PR:		277878
Approved by:	jrm (mentor)
Tested by:	michaelo, Antti Rasinen
MFH:		2025Q1
Differential Revision:	https://reviews.freebsd.org/D48313

(cherry picked from commit 39b0576)
  • Loading branch information
MikaelUrankar authored and michael-o committed Jan 8, 2025
1 parent c4e8fa2 commit 6c175b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/samba419/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PORTNAME= ${SAMBA4_BASENAME}419
PORTVERSION= ${SAMBA4_VERSION}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES?= net
MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc
DISTNAME= ${SAMBA4_DISTNAME}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ https://bugzilla.samba.org/show_bug.cgi?id=15376
/* Linux */
{ "/proc/self/fd/%d", "/proc/self/fd/0" },
+ /* FreeBSD */
+ { "/compat/linux/dev/fd/%d", "/compat/linux/dev/fd/0" },
+ { "/var/run/samba4/fd/%d", "/var/run/samba4/fd/0" },
{ NULL, NULL },
};

Expand Down

0 comments on commit 6c175b5

Please sign in to comment.