summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@gmail.com>2009-02-18 17:07:43 +0000
committerDamien Lespiau <damien.lespiau@gmail.com>2009-02-18 17:07:43 +0000
commitec97655379010edb56a707bc377d78ec80cae657 (patch)
tree39d4e25073a86aec9d198efa73a5816efd2bafc2
parentfdc10ee814116b62a8e6c8fad80dac1946d96bc8 (diff)
Fix quoting issues so we can work with gtk-doc
-rw-r--r--shave/shave.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/shave/shave.m4 b/shave/shave.m4
index 9d92847..54482db 100644
--- a/shave/shave.m4
+++ b/shave/shave.m4
@@ -25,12 +25,12 @@ AC_CHECK_PROG(SED,sed,sed,false)
dnl substitute libtool
SHAVE_SAVED_LIBTOOL=$LIBTOOL
AC_SUBST(SHAVE_SAVED_LIBTOOL)
-LIBTOOL='$(SHELL) $(shavedir)/shave-libtool "$(SHAVE_SAVED_LIBTOOL)"'
+LIBTOOL="\$(SHELL) \$(shavedir)/shave-libtool '\$(SHAVE_SAVED_LIBTOOL)'"
AC_SUBST(LIBTOOL)
dnl substitute cc
SHAVE_SAVED_CC=$CC
AC_SUBST(SHAVE_SAVED_CC)
-CC='$(SHELL) $(shavedir)/shave cc "$(SHAVE_SAVED_CC)"'
+CC="\$(SHELL) \$(shavedir)/shave cc '\$(SHAVE_SAVED_CC)'"
AC_SUBST(CC)
])