[SM-Commit] GIT changes to master grimoire by George Sherwood (ac7e58ce2c4974a1c68efef8e65452f79422bca2)

George Sherwood scm at sourcemage.org
Fri Nov 21 10:32:40 EST 2008


GIT changes to master grimoire by George Sherwood <gsherwood at sourcemage.org>:

 printer/mgetty/BUILD   |   10 +++++-----
 printer/mgetty/HISTORY |    3 +++
 2 files changed, 8 insertions(+), 5 deletions(-)

New commits:
commit ac7e58ce2c4974a1c68efef8e65452f79422bca2
Author: George Sherwood <gsherwood at sourcemage.org>
Commit: George Sherwood <gsherwood at sourcemage.org>

    mgetty: Erorrs in conditionals with no spaces

diff --git a/printer/mgetty/BUILD b/printer/mgetty/BUILD
index 616278e..7f657f9 100755
--- a/printer/mgetty/BUILD
+++ b/printer/mgetty/BUILD
@@ -4,19 +4,19 @@
 
   make                                                          &&
 
-  if [ $INCLUDE_CALLBACK=="y" ] ; then
+  if [ $INCLUDE_CALLBACK == "y" ] ; then
      cd   callback/                                             &&
      make                                                       &&
      cd   ../
   fi                                                            &&
 
-  if [ $INCLUDE_DIALOG=="y" ] ; then
+  if [ $INCLUDE_DIALOG == "y" ] ; then
      cd   frontends/dialog/                                     &&
      make                                                       &&
      cd   ../../
   fi                                                            &&
 
-  if [ $INCLUDE_VIEWFAX=="y" ] ; then
+  if [ $INCLUDE_VIEWFAX == "y" ] ; then
      cd   frontends/X11/viewfax*/                               &&
      xmkmf                                                      &&
      make                                                       &&
@@ -24,12 +24,12 @@
      cd   ../../../
   fi                                                            &&
 
-  if [ $INCLUDE_TOOLS=="y" ] ; then
+  if [ $INCLUDE_TOOLS == "y" ] ; then
      cd   tools/                                                &&
      make                                                       &&
      cd   ../
   fi                                                            &&
 
-  if [ $INCLUDE_VGETTY=="y" ] ; then
+  if [ $INCLUDE_VGETTY == "y" ] ; then
      make vgetty
   fi
diff --git a/printer/mgetty/HISTORY b/printer/mgetty/HISTORY
index c5400ae..f9ffd45 100644
--- a/printer/mgetty/HISTORY
+++ b/printer/mgetty/HISTORY
@@ -1,3 +1,6 @@
+2008-11-22 George Sherwood <gsherwood at sourcemage.org>
+	* BUILD: Errors in conditionals
+
 2008-03-18 Eric Sandall <sandalle at sourcemage.org>
 	* DEPENDS: Switch X11-LIBS to the one and only xorg-libs
 



More information about the SM-Commit mailing list