-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Autotools: Replace backticks with $(...) in php.m4 #15642
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
Conversation
This is a follow-up of phpGH-15639
e8db79c
to
7a95607
Compare
This broke the apcu build with:
Old:
New:
Note the extra backslash before |
It looks like a lot of the backtick expressions converted here contain |
Ah, I see. The apcu is using a Makefile variable in the config.m4. |
I'll recheck this one. Yes, basically no simple way here but to go back to the backticks in php.m4 here:
From a quick PECL extensions check there is only APCU still having this |
This replaces the "hacky" Makefile variable usage in config.m4 with a regular shell variable. Issue initially noted at php/php-src#15642
This replaces the "hacky" Makefile variable usage in config.m4 with a regular shell variable. Issue initially noted at php/php-src#15642
This is a follow-up of GH-15639