From: Nguyễn Thái Ngọc Duy Date: Mon, 25 Jul 2016 16:21:25 +0000 (+0200) Subject: config.mak.uname: correct perl path on FreeBSD X-Git-Tag: v2.9.3~37^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/259f22af90041f6e527971c2547d38832de93a85?hp=--cc config.mak.uname: correct perl path on FreeBSD It looks the the symlink /usr/bin/perl (to /usr/local/bin/perl) has been removed at least on FreeBSD 10.3. See [1] for more information. [1] https://svnweb.freebsd.org/ports/head/UPDATING?r1=386270&r2=386269&pathrev=386270&diff_format=c Signed-off-by: Nguyễn Thái Ngọc Duy Helped-by: Eric Wong Signed-off-by: Junio C Hamano --- 259f22af90041f6e527971c2547d38832de93a85 diff --git a/config.mak.uname b/config.mak.uname index a88f13989a..4cd62bda4f 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -203,6 +203,7 @@ ifeq ($(uname_S),FreeBSD) NO_STRTOUMAX = YesPlease endif PYTHON_PATH = /usr/local/bin/python + PERL_PATH = /usr/local/bin/perl HAVE_PATHS_H = YesPlease GMTIME_UNRELIABLE_ERRORS = UnfortunatelyYes HAVE_BSD_SYSCTL = YesPlease