summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2011-08-02 17:39:48 +0000
committerderaadt <deraadt@openbsd.org>2011-08-02 17:39:48 +0000
commit9eef843608f486962f3a7cd135ea755515956e2b (patch)
treed1d1de306305575d4d8e6dd6cc918bd08f1a6bfd
parentbetter describe what this app does, at the behest of deraadt; (diff)
downloadwireguard-openbsd-9eef843608f486962f3a7cd135ea755515956e2b.tar.xz
wireguard-openbsd-9eef843608f486962f3a7cd135ea755515956e2b.zip
After the MANIFEST-based symbolic link creation loop, there is a check
for a specific link to see if things worked out. Add a check for the very last file in the MANIFEST, as well, since we are trying to spot a very odd bug where symbolic links are not being created. Hopefully this will help us diagnose it. ok guenther millert
-rw-r--r--gnu/usr.bin/perl/Configure4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/Configure b/gnu/usr.bin/perl/Configure
index a23af611aa0..653b259d65a 100644
--- a/gnu/usr.bin/perl/Configure
+++ b/gnu/usr.bin/perl/Configure
@@ -2756,6 +2756,10 @@ $define|true|[yY]*)
echo "Failed to create the symlinks (t/base/lex.t missing). Aborting." >&4
exit 1
fi
+ if test ! -f x2p/walk.c; then
+ echo "Failed to create the symlinks (x2p/walk.c missing). Aborting." >&4
+ exit 1
+ fi
cd UU
;;
*) echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4