Help

Brandon Allbery allbery.b at gmail.com
Wed Jun 3 07:44:43 PDT 2015


On Wed, Jun 3, 2015 at 10:39 AM, Cheesy One <doubleburger123 at 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
allbery.b at gmail.com                                  ballbery at sinenomine.net
unix, openafs, kerberos, infrastructure, xmonad        http://sinenomine.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-users/attachments/20150603/c56ae75c/attachment.html>


More information about the macports-users mailing list