Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • bin/build.sh
    ... ... @@ -130,13 +130,11 @@ buildit ()
    130 130
     	time $BUILDWORLD $TARGET $OLDLISP $BOOT || { echo "Failed: $BUILDWORLD"; exit 1; }
    
    131 131
     	if [ "$REBUILD_LISP" = "yes" ]; then
    
    132 132
     	    $TOOLDIR/rebuild-lisp.sh $TARGET
    
    133
    -
    
    134
    -	    # Set the LANG to C.  For whatever reason, if I (rtoy) don't
    
    135
    -	    # do this on my openSuSE system, any messages from gcc are
    
    136
    -	    # basically garbled.  This should be harmless on other
    
    137
    -	    # systems.
    
    138
    -	    LANG=C $MAKE -C $TARGET/lisp $MAKE_TARGET || { echo "Failed: $MAKE -C $TARGET/lisp"; exit 1; }
    
    139
    -        fi
    
    133
    +	fi
    
    134
    +	
    
    135
    +	# Set the LANG to C.  For whatever reason, if I (rtoy) don't do this on my openSuSE system,
    
    136
    +	# any messages from gcc are basically garbled.  This should be harmless on other systems.
    
    137
    +	LANG=C $MAKE -C $TARGET/lisp $MAKE_TARGET || { echo "Failed: $MAKE -C $TARGET/lisp"; exit 1; }
    
    140 138
     
    
    141 139
     	if [ "$BUILD_WORLD2" = "yes" ];
    
    142 140
     	then