On Wed, Jun 3, 2015 at 10:39 AM, Cheesy One <doubleburger...@gmail.com>
wrote:

> as a grep check return. Instead I get this:
>
> default_socket_timeout = 60
> pdo_mysql.default_socket=/opt/local/bin/mysql_config --socket
> mysql.default_socket=/opt/local/bin/mysql_config --socket
> mysqli.default_socket=/opt/local/bin/mysql_config --socket
>

You used single quotes (') instead of backquotes (`) in

    # defSock=`/opt/local/bin/mysql_config --socket`

The backquote form is actually obsolete, in part because of this confusion.
Do step 3 again, but replace the above (line 4 of step 3) with:

    # defSock=$(/opt/local/bin/mysql_config --socket)

-- 
brandon s allbery kf8nh                               sine nomine associates
allber...@gmail.com                                  ballb...@sinenomine.net
unix, openafs, kerberos, infrastructure, xmonad        http://sinenomine.net
_______________________________________________
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users

Reply via email to