Re: [PATCH 1/2] modsign: don't use bashism in sh scripts.

2012-10-02 Thread Rusty Russell
David Howells writes: > Rusty Russell wrote: > >> -source ./.config >> +. ./.config > > Does that make a difference? It does on Ubuntu, where /bin/sh => dash. "source" is a bashism. Cheers, Rusty. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body

Re: [PATCH 1/2] modsign: don't use bashism in sh scripts.

2012-10-02 Thread Rusty Russell
David Howells dhowe...@redhat.com writes: Rusty Russell ru...@rustcorp.com.au wrote: -source ./.config +. ./.config Does that make a difference? It does on Ubuntu, where /bin/sh = dash. source is a bashism. Cheers, Rusty. -- To unsubscribe from this list: send the line

Re: [PATCH 1/2] modsign: don't use bashism in sh scripts.

2012-09-28 Thread David Howells
Rusty Russell wrote: > -source ./.config > +. ./.config Does that make a difference? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please

[PATCH 1/2] modsign: don't use bashism in sh scripts.

2012-09-28 Thread Rusty Russell
Signed-off-by: Rusty Russell diff --git a/scripts/sign-file b/scripts/sign-file index 1a472bb..e58e34e 100644 --- a/scripts/sign-file +++ b/scripts/sign-file @@ -10,7 +10,7 @@ scripts=`dirname $0` CONFIG_MODULE_SIG_SHA512=y if [ -r .config ] then -source ./.config +. ./.config fi

[PATCH 1/2] modsign: don't use bashism in sh scripts.

2012-09-28 Thread Rusty Russell
Signed-off-by: Rusty Russell ru...@rustcorp.com.au diff --git a/scripts/sign-file b/scripts/sign-file index 1a472bb..e58e34e 100644 --- a/scripts/sign-file +++ b/scripts/sign-file @@ -10,7 +10,7 @@ scripts=`dirname $0` CONFIG_MODULE_SIG_SHA512=y if [ -r .config ] then -source ./.config +

Re: [PATCH 1/2] modsign: don't use bashism in sh scripts.

2012-09-28 Thread David Howells
Rusty Russell ru...@rustcorp.com.au wrote: -source ./.config +. ./.config Does that make a difference? -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at