diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh index d3e513a0c7c..f937e6be0d0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -75,6 +75,16 @@ if [ "x$MISSING" != "x" ]; then exit 1 fi +## generate gf-error-codes.h from error-codes.json +echo "Generate gf-error-codes.h ..." +if ./gen-headers.py; then + if ! mv -fv gf-error-codes.h libglusterfs/src/gf-error-codes.h; then + exit 1 + fi +else + exit 1 +fi + ## Do the autogeneration echo Running ${ACLOCAL}... $ACLOCAL -I ./contrib/aclocal |