GNOME Bugzilla – Bug 710331
Fix posix shell syntax error
Last modified: 2013-10-27 15:39:36 UTC
Created attachment 257462 [details] [review] [PATCH] Fix posix shell syntax error Commit a43c830b303c117214201d4af37e67baa6e455e5 introduced the following error when running the script with dash, a posix compliant shell. sh -n tools/yelp-check tools/yelp-check: 696: tools/yelp-check: Syntax error: Missing '))' Afaics the code tries to run a subshell and pipe that output through xsltproc. So having a white space between the two (( should fix this. Attached patch does that.
Thanks for the fix.