Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Full path for loading zend extensions #123

Merged
merged 2 commits into from
Aug 7, 2015
Merged

Full path for loading zend extensions #123

merged 2 commits into from
Aug 7, 2015

Conversation

abcdmitry
Copy link
Contributor

On loading zend extensions PHP requires full path to extension

@@ -40,7 +41,7 @@ fi
for module in "${modules[@]}"; do
if grep -q zend_extension_entry "$module"; then
# https://wiki.php.net/internals/extensions#loading_zend_extensions
line="zend_extension=$module"
line="zend_extension=$EXT_DIR/$module"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of doing things with EXT_DIR, can we instead just change this line to the following:

        line="zend_extension=$(readlink -f "$module")"

@tianon
Copy link
Member

tianon commented Aug 7, 2015

LGTM 👍

tianon added a commit that referenced this pull request Aug 7, 2015
Full path for loading zend extensions
@tianon tianon merged commit 789a45b into docker-library:master Aug 7, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants