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

2012-10-01 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-crypto" in the body o

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-crypto" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

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

2012-09-27 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 k