[uClibc-cvs] uClibc/extra/scripts fix_includes.sh,1.6,1.7

Erik Andersen andersen at uclibc.org
Tue Sep 30 07:06:06 UTC 2003


Update of /var/cvs/uClibc/extra/scripts
In directory winder:/tmp/cvs-serv23905/extra/scripts

Modified Files:
	fix_includes.sh 
Log Message:
oops.


Index: fix_includes.sh
===================================================================
RCS file: /var/cvs/uClibc/extra/scripts/fix_includes.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- fix_includes.sh	17 Sep 2003 10:39:08 -0000	1.6
+++ fix_includes.sh	30 Sep 2003 07:06:02 -0000	1.7
@@ -114,15 +114,15 @@
     if [ "$TARGET_ARCH" = "powerpc" ];then
 	set -x;
 	ln -fs $KERNEL_SOURCE/include/asm-ppc include/asm;
-	unset -x;
+	set +x;
     elif [ "$TARGET_ARCH" = "mips" ];then
 	set -x;
 	ln -fs $KERNEL_SOURCE/include/asm-mips include/asm;
-	unset -x;
+	set +x;
     elif [ "$TARGET_ARCH" = "arm" ];then
 	set -x;
 	ln -fs $KERNEL_SOURCE/include/asm-arm include/asm;
-	unset -x;
+	set +x;
 	if [ ! -L $KERNEL_SOURCE/include/asm-arm/proc ] ; then 
 	    if [ ! -L proc ] ; then
 		(cd include/asm;
@@ -133,25 +133,25 @@
     elif [ "$TARGET_ARCH" = "mipsel" ];then
 	set -x;
 	ln -fs $KERNEL_SOURCE/include/asm-mips include/asm;
-	unset -x;
+	set +x;
     elif [ "$TARGET_ARCH)" = "cris" ]; then
 	set -x;
 	ln -fs $KERNEL_SOURCE/include/asm-cris include/asm;
-	unset -x;
+	set +x;
     elif [ "$HAS_MMU" != "y" ]; then
 	    if [ -d $KERNEL_SOURCE/include/asm-${TARGET_ARCH}nommu ] ; then
 		set -x;
 		ln -fs $KERNEL_SOURCE/include/asm-${TARGET_ARCH}nommu include/asm;
-		unset -x;
+		set +x;
 	    else
 		set -x;
 		ln -fs $KERNEL_SOURCE/include/asm-$TARGET_ARCH include/asm;
-		unset -x;
+		set +x;
 	    fi;
     else
 	set -x;
 	ln -fs $KERNEL_SOURCE/include/asm-$TARGET_ARCH include/asm;
-	unset -x;
+	set +x;
     fi;
 else
 # No guessing required.....




More information about the uClibc-cvs mailing list