|
From: <nbo...@us...> - 2007-06-19 13:42:55
|
Revision: 130
http://svn.sourceforge.net/mactel-linux/?rev=130&view=rev
Author: nboichat
Date: 2007-06-19 06:42:37 -0700 (Tue, 19 Jun 2007)
Log Message:
-----------
Fix apply and unapply scripts.
Modified Paths:
--------------
trunk/kernel/mactel-patches-2.6.20/apply
trunk/kernel/mactel-patches-2.6.20/unapply
trunk/kernel/mactel-patches-2.6.21/apply
trunk/kernel/mactel-patches-2.6.21/unapply
trunk/kernel/mactel-patches-2.6.22/apply
trunk/kernel/mactel-patches-2.6.22/unapply
Modified: trunk/kernel/mactel-patches-2.6.20/apply
===================================================================
--- trunk/kernel/mactel-patches-2.6.20/apply 2007-06-16 10:07:20 UTC (rev 129)
+++ trunk/kernel/mactel-patches-2.6.20/apply 2007-06-19 13:42:37 UTC (rev 130)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
echo "usage ./apply kerneldir"
exit 0
fi
Modified: trunk/kernel/mactel-patches-2.6.20/unapply
===================================================================
--- trunk/kernel/mactel-patches-2.6.20/unapply 2007-06-16 10:07:20 UTC (rev 129)
+++ trunk/kernel/mactel-patches-2.6.20/unapply 2007-06-19 13:42:37 UTC (rev 130)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
echo "usage ./unapply kerneldir"
exit 0
fi
Modified: trunk/kernel/mactel-patches-2.6.21/apply
===================================================================
--- trunk/kernel/mactel-patches-2.6.21/apply 2007-06-16 10:07:20 UTC (rev 129)
+++ trunk/kernel/mactel-patches-2.6.21/apply 2007-06-19 13:42:37 UTC (rev 130)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
echo "usage ./apply kerneldir"
exit 0
fi
Modified: trunk/kernel/mactel-patches-2.6.21/unapply
===================================================================
--- trunk/kernel/mactel-patches-2.6.21/unapply 2007-06-16 10:07:20 UTC (rev 129)
+++ trunk/kernel/mactel-patches-2.6.21/unapply 2007-06-19 13:42:37 UTC (rev 130)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
echo "usage ./unapply kerneldir"
exit 0
fi
Modified: trunk/kernel/mactel-patches-2.6.22/apply
===================================================================
--- trunk/kernel/mactel-patches-2.6.22/apply 2007-06-16 10:07:20 UTC (rev 129)
+++ trunk/kernel/mactel-patches-2.6.22/apply 2007-06-19 13:42:37 UTC (rev 130)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
echo "usage ./apply kerneldir"
exit 0
fi
Modified: trunk/kernel/mactel-patches-2.6.22/unapply
===================================================================
--- trunk/kernel/mactel-patches-2.6.22/unapply 2007-06-16 10:07:20 UTC (rev 129)
+++ trunk/kernel/mactel-patches-2.6.22/unapply 2007-06-19 13:42:37 UTC (rev 130)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
-if [ "$1" == "" ]; then
+if [ "$1" = "" ]; then
echo "usage ./unapply kerneldir"
exit 0
fi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|