xfig: Fix build failure now visible due to #7524

The first 'find' command in postUnpack that attempts to add +x
permissions fails, because the +x permission is needed by the find
itself, and with the xargs method it's added too late.

+1 -2
+1 -2
pkgs/applications/graphics/xfig/builder.sh
··· 5 5 # We need chmod +wx on dirs, not just chmod +w 6 6 dontMakeSourcesWritable=1 7 7 postUnpack() { 8 - find . -type d | xargs -n1 chmod +x 9 - find . -type d | xargs -n1 chmod +x 8 + find . -type d -exec chmod +x '{}' \; 10 9 } 11 10 12 11 preBuild() {