GNOME Bugzilla – Bug 692186
build: autogen.sh uses /bin/sh but depends on advanced shell redirection shorthands
Last modified: 2013-01-22 17:04:10 UTC
Created attachment 233995 [details] [review] build: "&>" is a advanced shell extension. Use > and 2>&1 instead. dconf autogen.sh uses /bin/sh as shebang which on debian bind to dash. Dash has no support for "&>" redirection (both stdout and stderr). Thus it interpret the command as detach and redirect stdout. Switch to explicitely redirect stdout and stderr : "> /dev/null 2>&1" for which "&>" is a shorthand to fix the build failure.
Review of attachment 233995 [details] [review]: Thanks!
sorry I could commit (not a gnome developer as of now)
Pushing because the reporter does not have commit access.