unread
Good morning,
i think there is a problem in phpize that I just run into
in phpize.in we have
...
prefix="@prefix@"
...
phpize_replace_prefix()
{
sed
-e "s#@prefix@#$prefix#"
< "$phpdir/phpize.m4" > configure.in
}
This is in my opinion wrong, because @prefix@ and $prefix are obviously the same.
Am I missing something or would it be correct to have the default prefix instead of @prefix@?
sed
-e "s#/usr/local#$prefix#"
< "$phpdir/phpize.m4" > configure.in
Greetings,
Stefan