diff options
author | dx <dx@dxzone.com.ar> | 2015-10-30 04:09:00 -0300 |
---|---|---|
committer | dx <dx@dxzone.com.ar> | 2015-10-30 04:09:00 -0300 |
commit | 897ceedc16fd2a24e75529480a7b7bc6ca769073 (patch) | |
tree | 5afa7464af826d1c7119a83133acb4936420f830 | |
parent | 0184b4c3bf8a03af1f8840a549b050487a85dcd1 (diff) | |
parent | 06bf25bfbaaf33772e36317dba28ce5b6a301616 (diff) | |
download | irssi-897ceedc16fd2a24e75529480a7b7bc6ca769073.zip |
Merge pull request #344 from rrebello/m4-quote-fix
Fix quote around macro argument
-rw-r--r-- | m4/curses.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/curses.m4 b/m4/curses.m4 index 82b110fe..41c0e6c8 100644 --- a/m4/curses.m4 +++ b/m4/curses.m4 @@ -131,7 +131,7 @@ AC_DEFUN([AC_CHECK_CURSES],[ if test x$withval = xno ; then search_ncurses=false elif test x$withval != xyes ; then - AC_NCURSES($withval/include, ncurses.h, -L$withval/lib -lncurses, -I$withval/include, "ncurses on $withval/include") + AC_NCURSES($withval/include, ncurses.h, -L$withval/lib -lncurses, -I$withval/include, [ncurses on $withval/include]) fi ) |