From 76528bbf0ccd96e92a4a365c06b9d63fed6920d6 Mon Sep 17 00:00:00 2001
From: Christian Engwer <christi@dune-project.org>
Date: Tue, 1 Aug 2006 14:08:27 +0000
Subject: [PATCH] fiy quoting, this should fix issue #164

[[Imported from SVN: r4653]]
---
 bin/dunemodules.inc | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/bin/dunemodules.inc b/bin/dunemodules.inc
index 332349cbe..a4db237f4 100644
--- a/bin/dunemodules.inc
+++ b/bin/dunemodules.inc
@@ -84,7 +84,12 @@ EOF
 #
 sort_modules() {
   for m in "$@"; do
-    _sort_module $m
+    if test "x$(eval echo \$HAVE_$m)" != "x"; then
+      _sort_module $m
+    else
+      echo "ERROR: could not find module $dep"
+      exit 1
+    fi
   done
   if test x"$ONLY" != x; then
 	SORTEDMODULES=$ONLY
@@ -169,7 +174,7 @@ fix_and_assign() {
   if ! check_modname $name; then
     echo ERROR: error in assignment. $name is not a valid variabel name.
   fi
-  export $name=$(echo "$@" | sed -e 's/-/_/g')
+  export $name="$(echo "$@" | sed -e 's/-/_/g')"
 }
 
 #
-- 
GitLab