search for: 16cf91f

Displaying 2 results from an estimated 2 matches for "16cf91f".

2014 Sep 23
0
[PATCH 10/13] syntax-check: fix prohibit_test_minus_ao check
...n +if [ ! -f fedora.xz || ! -f fedora.qcow2 || ! -f fedora.qcow2.xz ]; then echo "$0: test skipped because there is no fedora.xz, fedora.qcow2 or fedora.qcow2.xz in the build directory" exit 77 fi diff --git a/builder/website/ubuntu.sh b/builder/website/ubuntu.sh index 0863fb0..16cf91f 100755 --- a/builder/website/ubuntu.sh +++ b/builder/website/ubuntu.sh @@ -26,7 +26,7 @@ export LANG=C set -e set -x -if [ $# -lt 2 -o $# -gt 3 ]; then +if [ $# -lt 2 || $# -gt 3 ]; then echo "$0 VERSION DIST [OSVARIANT]" exit 1 fi diff --git a/configure.ac b/configure.ac i...
2014 Sep 23
27
[PATCH 00/13] syntax-check
Hi Rich, This series includes patches to make `make syntax-check` pass. Some of the fix require change to maint.mk, but the file is not in git repo. Is it intended? Thanks! Hu Tao (13): syntax-check: dirty hack to pass bindtextdomain check syntax-check: fix error_message_period check syntax-check: fix makefile_at_at_check syntax-check: fix prohibit_assert_without_use check