diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-06-26 16:29:41 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-06-26 16:29:41 -0700 |
commit | 39f1f3f75b72f43637afeb963c8c83f080dd2635 (patch) | |
tree | d2f929260dad4925cb2eb34e78870194ec2edfd7 | |
parent | bef919a0673867c0066ea06bd981d161e058f927 (diff) |
Fix PLUGIN_CFLAGS setting without firefox-plugin.pc & mozilla-plugin.pc
Quote $(top_srcdir)/plugin/include to avoid "top_srcdir: command not found"
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b9b41bb..1e57096 100644 --- a/configure.ac +++ b/configure.ac @@ -60,7 +60,7 @@ if test "x$PLUGIN_CFLAGS" = x ; then [PLUGIN_CFLAGS=${FIREFOX_PLUGIN_CFLAGS}], [AC_MSG_RESULT([no])]) if test "x$PLUGIN_CFLAGS" = x ; then - PLUGIN_CFLAGS=-I$(top_srcdir)/plugin/include + PLUGIN_CFLAGS='-I$(top_srcdir)/plugin/include' fi fi fi |