[Lunar-commits] <moonbase> libproxy: Fix syntax error in DEPENDS. Minor change in BUILD.

Jannis Pohlmann jannis at lunar-linux.org
Sun Mar 8 22:28:52 CET 2009


commit 04082dd970acf9127ec90f15a7c3993a44f09483
Author: Jannis Pohlmann <jannis at lunar-linux.org>
Date:   Sun Mar 8 22:28:00 2009 +0100

    libproxy: Fix syntax error in DEPENDS. Minor change in BUILD.
---
 libs/libproxy/BUILD   |    3 ++-
 libs/libproxy/DEPENDS |    6 +++---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/libs/libproxy/BUILD b/libs/libproxy/BUILD
index 7ba3007..61cd030 100644
--- a/libs/libproxy/BUILD
+++ b/libs/libproxy/BUILD
@@ -1,7 +1,8 @@
 (
 
   if in_depends $MODULE xulrunner; then
-  CFLAGS="$CFLAGS -I/usr/include/xulrunner-$(installed_version xulrunner)/unstable"
+    XULRUNNER_VERSION=$(installed_version xulrunner)
+    CFLAGS="$CFLAGS -I/usr/include/xulrunner-$XULRUNNER_VERSION/unstable"
   fi &&
 
   default_build
diff --git a/libs/libproxy/DEPENDS b/libs/libproxy/DEPENDS
index 1d1ab0c..92f85cc 100644
--- a/libs/libproxy/DEPENDS
+++ b/libs/libproxy/DEPENDS
@@ -1,6 +1,6 @@
-optional_depends  "gnome2"            \                                                                              
-                  "--with-gnome"      \                                                                              
-                  "--without-gnome"   \                                                                              
+optional_depends  "gnome2"            \
+                  "--with-gnome"      \
+                  "--without-gnome"   \
                   "for GNOME support"
 
 optional_depends  "kde4"              \


More information about the Lunar-commits mailing list