forked from phacility/arcanist
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow arcanist to search for libphutil in externals/includes/
Summary: In some cases (notably, homebrew) an installer may not control where arcanist/ and libphutil/ live and may not be able to control 'include_path'. Allow libphutil/ to be symlinked into arcanist/externals/includes/ if all else fails. Test Plan: - Moved `libphutil` to `libphutilx`. Ran "arc" and got a failure. - Symlinked it into externals/includes/, ran `arc`, got success. - Moved it back to `libphutil`, ran `arc`, success. Reviewers: vrana, btrahan Reviewed By: vrana CC: aran, tfmeusburger Differential Revision: https://secure.phabricator.com/D3243
- Loading branch information
epriestley
committed
Aug 10, 2012
1 parent
6288bd6
commit a31d88e
Showing
3 changed files
with
45 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
/src/.phutil_module_cache | ||
/docs/ | ||
/.divinercache/ | ||
/externals/includes/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This directory is added to the PHP include path. You can symlink things here | ||
if you have control over directory setup but not over PHP configuration (for | ||
instance, in Homebrew). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters