From 31c3f2a03e574295d50a04d3063d506b67e9c141 Mon Sep 17 00:00:00 2001 From: moos3 Date: Tue, 29 Nov 2011 08:58:04 -0500 Subject: [PATCH] Fix to calling the php binary Summary: by default it was looking for php to be in /usr/bin/php on some systems this is incorrect. It should be using /usr/bin/env php for calling php with the correct path. Test Plan: patch and try to run. Reviewers: epriestley Reviewed By: epriestley CC: svemir, aran, epriestley Differential Revision: 1136 --- scripts/mail/mail_handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mail/mail_handler.php b/scripts/mail/mail_handler.php index deb0e2bffe..050b894a0b 100755 --- a/scripts/mail/mail_handler.php +++ b/scripts/mail/mail_handler.php @@ -1,4 +1,4 @@ -#!/usr/bin/php +#!/usr/bin/env php