Closed (fixed)
Project:
Drupal.org Testing
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 May 2012 at 17:13 UTC
Updated:
2 Sep 2012 at 17:41 UTC
On my first attempt to install per the project page instructions, install.php reports:
The Glip library must be present at sites/all/libraries/glip/lib. (Currently using Glip Library Missing. See the instructions in README.txt)
This comes from git_deploy_requirements - the specific path is hard-coded in the message, it doesn't necessarily have to be precisely there. Glip is present at profiles/drupalorg_testing/libraries/glip. The actual problem is that libraries_get_path() is not defined at this point, so the glip library can't be found - this will fail even if the library were at sites/all/libraries.
Comments
Comment #1
xjmI worked around this by simply deleting the
hook_requirements()fromgit_deploy/git_deploy.install. This should probably be filed as an issue against that project if it isn't already.Comment #2
webchickThere's an upstream issue about this in the Git Deploy queue at #1215372: Requirements check fails on Drupal installation which was already committed to the 6.x-1.x branch, however it's not working because #1215376: Autoload and populate drupal_get_filename() with libraries.module during Drupal installation from Libraries API is not.
I attempted to fix this with the following: http://drupalcode.org/project/drupalorg_testing.git/commitdiff/b01e0f00b... We'll see what happens. :)