diff options
author | Christian Persch <chpe@src.gnome.org> | 2007-09-13 02:44:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-09-13 02:44:22 +0800 |
commit | 444297ce6ab76f35774c9ce434c32ff42972f630 (patch) | |
tree | 565f2442cbbc41efb88ef98dd0f0ff69fd0ba109 | |
parent | 638af2df837e0049c7f505443b1db27f9c3b2b2f (diff) | |
download | gsoc2013-epiphany-444297ce6ab76f35774c9ce434c32ff42972f630.tar gsoc2013-epiphany-444297ce6ab76f35774c9ce434c32ff42972f630.tar.gz gsoc2013-epiphany-444297ce6ab76f35774c9ce434c32ff42972f630.tar.bz2 gsoc2013-epiphany-444297ce6ab76f35774c9ce434c32ff42972f630.tar.lz gsoc2013-epiphany-444297ce6ab76f35774c9ce434c32ff42972f630.tar.xz gsoc2013-epiphany-444297ce6ab76f35774c9ce434c32ff42972f630.tar.zst gsoc2013-epiphany-444297ce6ab76f35774c9ce434c32ff42972f630.zip |
Fix the LIBXUL_INCLUDES variable
svn path=/trunk/; revision=7395
-rw-r--r-- | m4/libxul.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/libxul.m4 b/m4/libxul.m4 index 9e9d029a5..e31fbe160 100644 --- a/m4/libxul.m4 +++ b/m4/libxul.m4 @@ -38,9 +38,9 @@ fi libxul_cv_prefix="$($PKG_CONFIG --variable=prefix libxul)" libxul_cv_include_root="$($PKG_CONFIG --variable=includedir libxul)" -libxul_libdir="$($PKG_CONFIG --variable=sdkdir libxul)" +libxul_cv_libdir="$($PKG_CONFIG --variable=sdkdir libxul)" -libxul_includes="$libxul_cv_include_root/stable $libxul_cv_include_root/unstable" +libxul_cv_includes="-I${libxul_cv_include_root}/stable -I${libxul_cv_include_root}/unstable" AC_DEFINE([HAVE_LIBXUL],[1],[Define for libxul]) |