Fix quoting of parentheses in sed commands.
authorlxoliva <lxoliva@559672b5-ba27-0410-b829-e8f1faed8b1b>
Mon, 19 May 2008 00:41:15 +0000 (00:41 +0000)
committerlxoliva <lxoliva@559672b5-ba27-0410-b829-e8f1faed8b1b>
Mon, 19 May 2008 00:41:15 +0000 (00:41 +0000)
git-svn-id: http://www.fsfla.org/svn/fsfla/software/linux-libre/scripts@3557 559672b5-ba27-0410-b829-e8f1faed8b1b

deblob-2.6.23
deblob-2.6.24
deblob-2.6.25

index 828828e78819ff8990998ea2a11453d5d4a83650..8e9efe19a4bb9f9dd8d9bc2a7f393ef4a0370730 100755 (executable)
@@ -84,7 +84,7 @@ function clean_blob {
 function clean_kconfig {
         #$1 = filename $2 = things to remove
         echo Marking config $2 as depending on NONFREE in $1
-       sed "/^config \($2\)\$/{p;i\
+       sed "/^config \\($2\\)\$/{p;i\
        depends on NONFREE
 d;}" $1 > $1.deblob
        check_changed $1
@@ -93,9 +93,9 @@ d;}" $1 > $1.deblob
 function clean_mk {
        #$1 = config $2 = Makefile name
        # We don't clean up Makefiles any more --lxoliva
-       # sed -i "/($1)/d" $2
+       # sed -i "/\\($1\\)/d" $2
        # check_changed $2
-       if sed -n "/($1)/p" $2 | grep . > /dev/null; then
+       if sed -n "/\\($1\\)/p" $2 | grep . > /dev/null; then
            :
        else
            echo $2 does not contain matches for $1
index 9fb289e18298d30a51d6bc263b50606a0cf36549..9eef94de5c526452dc3dfc11e873ce629b913ba0 100755 (executable)
@@ -84,7 +84,7 @@ function clean_blob {
 function clean_kconfig {
         #$1 = filename $2 = things to remove
         echo Marking config $2 as depending on NONFREE in $1
-       sed "/^config \($2\)\$/{p;i\
+       sed "/^config \\($2\\)\$/{p;i\
        depends on NONFREE
 d;}" $1 > $1.deblob
        check_changed $1
@@ -93,9 +93,9 @@ d;}" $1 > $1.deblob
 function clean_mk {
        #$1 = config $2 = Makefile name
        # We don't clean up Makefiles any more --lxoliva
-       # sed -i "/($1)/d" $2
+       # sed -i "/\\($1\\)/d" $2
        # check_changed $2
-       if sed -n "/($1)/p" $2 | grep . > /dev/null; then
+       if sed -n "/\\($1\\)/p" $2 | grep . > /dev/null; then
            :
        else
            echo $2 does not contain matches for $1
index 751d4db4fd038088f05f0a3425ce398469a4e9e0..173a73a955010b16165d49e1598ad23841e1bf30 100755 (executable)
@@ -84,7 +84,7 @@ function clean_blob {
 function clean_kconfig {
         #$1 = filename $2 = things to remove
         echo Marking config $2 as depending on NONFREE in $1
-       sed "/^config \($2\)\$/{p;i\
+       sed "/^config \\($2\\)\$/{p;i\
        depends on NONFREE
 d;}" $1 > $1.deblob
        check_changed $1
@@ -93,9 +93,9 @@ d;}" $1 > $1.deblob
 function clean_mk {
        #$1 = config $2 = Makefile name
        # We don't clean up Makefiles any more --lxoliva
-       # sed -i "/($1)/d" $2
+       # sed -i "/\\($1\\)/d" $2
        # check_changed $2
-       if sed -n "/($1)/p" $2 | grep . > /dev/null; then
+       if sed -n "/\\($1\\)/p" $2 | grep . > /dev/null; then
            :
        else
            echo $2 does not contain matches for $1