Conflict error on PECL YAML
Monday, December 10th, 2012 | Programming, Tech
If you are trying to install PECL YAML on Mac OS X Lion, you may find you get a conflict with an error message similar to the following.
WARNING: pecl.php.net/yaml: conflicting files found:
yaml/LICENSE (pear.symfony-project.com/yaml)
This error is documented on GitHub and as it is not critical, can be overcome by turning off errors.
pecl install --ignore-errors yaml
On running that command, it should no longer stop at that point.
If you are trying to install PECL YAML on Mac OS X Lion, you may find you get a conflict with an error message similar to the following.
WARNING: pecl.php.net/yaml: conflicting files found: yaml/LICENSE (pear.symfony-project.com/yaml)
This error is documented on GitHub and as it is not critical, can be overcome by turning off errors.
pecl install --ignore-errors yaml
On running that command, it should no longer stop at that point.