diff options
author | 2016-09-16 08:33:13 +0000 | |
---|---|---|
committer | 2016-09-16 08:33:13 +0000 | |
commit | 2ba02a43ce2e4cf77b3d771cd8ccfc66d848105a (patch) | |
tree | c6c3c550b9d69acea552ac9bdd62ae3d2cd78df8 /gnu/usr.bin/perl/installperl | |
parent | add a note on kexfuzz' limitations (diff) | |
download | wireguard-openbsd-2ba02a43ce2e4cf77b3d771cd8ccfc66d848105a.tar.xz wireguard-openbsd-2ba02a43ce2e4cf77b3d771cd8ccfc66d848105a.zip |
Don't check if target directory is writeable. This gets in the way of
noperm builds.
ok deraadt some time ago
Diffstat (limited to 'gnu/usr.bin/perl/installperl')
-rw-r--r-- | gnu/usr.bin/perl/installperl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/installperl b/gnu/usr.bin/perl/installperl index 0e254269cf7..9a69ea75bf4 100644 --- a/gnu/usr.bin/perl/installperl +++ b/gnu/usr.bin/perl/installperl @@ -232,8 +232,6 @@ if ($Is_VMS) { # Hang in there until File::Spec hits the big time $installbin || die "No installbin directory in config.sh\n"; -d $installbin || mkpath($installbin); -d $installbin || $opts{notify} || die "$installbin is not a directory\n"; --w $installbin || $opts{notify} || die "$installbin is not writable by you\n" - unless $installbin =~ m#^/afs/# || $opts{notify}; if (!$Is_NetWare) { if (!$Is_VMS) { |