1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00
freebsd-ports/textproc/p5-XML-Parser/files/check_nfs.pl
Jun Kuriyama e55bb17f86 - Try to fix build on NFS without lockd (patch provided by Martin
Tournoij <martin@arp242.net> at ports/155991).
- Add pre-build check for locking to tell people why build fails.

PR:		ports/155991, ports/164600
Submitted by:	"Dmitry S. Luhtionov" <mitya@cabletv.dp.ua>
2013-01-12 03:06:37 +00:00

11 lines
189 B
Perl

#!/usr/bin/perl
#
# $FreeBSD$
use strict;
use warnings;
use File::Temp qw(tempfile);
my ($fh, $fn) = tempfile("check-XXXXXX", SUFFIX => '.tmp', TMPDIR => 1, UNLINK => 1);
#print "$fn\n";