Tôi đang cố gắng chạy macports như vậy:
port install php5
Tuy nhiên, khi tôi làm như vậy, tôi gặp lỗi này:
Error: Unable to open port: can't read "build.cmd": Failed to locate 'make' in path: '/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin' or at its MacPorts configuration time location, did you move it?
Vì vậy, tôi nhìn vào con đường của mình:
declare -x PATH="/Developer/usr/bin:/opt/subversion/bin:/opt/local/bin:/opt/local/sbin:/usr/local/php5/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin"
và sau đó nhìn để đảm bảo thực hiện một trong những thư mục đó:
ls -l /Developer/usr/bin/make
$ lrwxr-xr-x 1 root admin 7 Aug 7 16:47 /Developer/usr/bin/make -> gnumake
Và gõ:
make
sản xuất:
make: *** No targets specified and no makefile found. Stop.
Vì vậy, tôi biết rằng nó ở đó.
Nhưng macports không thể tìm thấy nó. Có ý kiến gì không?
G-Man