Running MacOSX Public Beta, PHP 4.0.4pl1

make install fails in the pear directory, spitting out the following stuff

for prog in phpize php-config pear; do \
/Users/leon/Library/Desktop/php-4.0.4pl1/build/shtool install -c -m 755 $prog /usr/local/bin/$prog; \
done
cp: pear is a directory (not copied).
make[2]: [install-programs] Error 1
make[1]:
[install-recursive] Error 1
make: *** [install-su] Error 2

I've traced the problem to the install-programs section of pear/Makefile. The bit of script is

    for prog in $(bin_PROGRAMS); do \
            $(INSTALL) -m 755 $$prog $(bindir)/$$prog; \
    done

Unfortunately, this is where my knowledge comes up short. Can anyone help?

Thanks!
Leon

    Write a Reply...