Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (38454496c10b780ee9b30dce3f1d6fe602addcf9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Juuso Alasuutari <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (38454496c10b780ee9b30dce3f1d6fe602addcf9)
  • Date: Fri, 5 Jan 2007 04:10:57 -0600

GIT changes to master grimoire by Juuso Alasuutari <iuso AT sourcemage.org>:

net/wpa_supplicant/BUILD | 2 --
net/wpa_supplicant/HISTORY | 5 +++++
net/wpa_supplicant/PRE_BUILD | 9 ++++-----
3 files changed, 9 insertions(+), 7 deletions(-)

New commits:
commit 38454496c10b780ee9b30dce3f1d6fe602addcf9
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

wpa_supplicant: Removed redundant is_depends_enabled.function and
unnecessary nested conditionals.

diff --git a/net/wpa_supplicant/BUILD b/net/wpa_supplicant/BUILD
index 900e7cc..c83931c 100755
--- a/net/wpa_supplicant/BUILD
+++ b/net/wpa_supplicant/BUILD
@@ -27,8 +27,6 @@ done &&

make &&

-. "$GRIMOIRE/is_depends_enabled.function" &&
-
if is_depends_enabled $SPELL qt-x11
then
make wpa_gui
diff --git a/net/wpa_supplicant/HISTORY b/net/wpa_supplicant/HISTORY
index 7cf81e0..262e3d5 100644
--- a/net/wpa_supplicant/HISTORY
+++ b/net/wpa_supplicant/HISTORY
@@ -1,3 +1,8 @@
+2007-01-05 Juuso Alasuutari <iuso AT sourcemage.org>
+ * BUILD: Removed redundant sourcing of is_depends_enabled.function,
+ now in PRE_BUILD.
+ * PRE_BUILD: Removed unnecessary nested conditionals.
+
2007-01-04 Eric Sandall <eric AT sandall.us>
* PRE_BUILD: For new installs, /etc/profile.d/qt.sh won't be sourced
until relogin, so we need to check for QTDIR and source qt.sh if
diff --git a/net/wpa_supplicant/PRE_BUILD b/net/wpa_supplicant/PRE_BUILD
index a0c6b76..969fb3d 100755
--- a/net/wpa_supplicant/PRE_BUILD
+++ b/net/wpa_supplicant/PRE_BUILD
@@ -9,10 +9,9 @@ then
sed -i "s/wpa_cli dynamic_eap_methods/wpa_cli/" Makefile
fi &&

-source "$GRIMOIRE/is_depends_enabled.function" &&
+. "$GRIMOIRE/is_depends_enabled.function" &&

-if is_depends_enabled $SPELL qt-x11; then
- if [[ -z $QTDIR ]]; then
- source $TRACK_ROOT/etc/profile.d/qt.sh
- fi
+if [[ -z $QTDIR ]] && is_depends_enabled $SPELL qt-x11
+then
+ . "$TRACK_ROOT/etc/profile.d/qt.sh"
fi



  • [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (38454496c10b780ee9b30dce3f1d6fe602addcf9), Juuso Alasuutari, 01/05/2007

Archive powered by MHonArc 2.6.24.

Top of Page