diff options
author | 2011-04-05 13:06:31 -0600 | |
---|---|---|
committer | 2011-04-07 15:03:53 -0600 | |
commit | 02c39a2f6d08d1f73b0ffdaeb3c0fd70af2e6e56 (patch) | |
tree | a35ad9ec71af6c913a292f59208e52c0aea8a77f /m4 | |
parent | docs: add an IPv6 address to network XML examples (diff) | |
download | libvirt-02c39a2f6d08d1f73b0ffdaeb3c0fd70af2e6e56.tar.gz libvirt-02c39a2f6d08d1f73b0ffdaeb3c0fd70af2e6e56.tar.bz2 libvirt-02c39a2f6d08d1f73b0ffdaeb3c0fd70af2e6e56.zip |
build: fix gitignore sorting
Make it so we don't have to 'git add -f' particular files like
po/POTFILES.in all the time (tested by fixing one of our
special-case files as part of the patch).
* .gnulib: Update to latest.
* bootstrap: Resync from coreutils.
* .gitignore: Sort whitelist entries correctly, including ignoring
files rather than directories.
* m4/virt-compile-warnings.m4: Convert tabs to space.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/virt-compile-warnings.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/virt-compile-warnings.m4 b/m4/virt-compile-warnings.m4 index 8df6f9cc5..295fd9be0 100644 --- a/m4/virt-compile-warnings.m4 +++ b/m4/virt-compile-warnings.m4 @@ -15,7 +15,7 @@ AC_DEFUN([LIBVIRT_COMPILE_WARNINGS],[ case "$enable_compile_warnings" in no) try_compiler_flags="" - ;; + ;; yes|minimum|maximum|error) # List of warnings that are not relevant / wanted @@ -118,10 +118,10 @@ AC_DEFUN([LIBVIRT_COMPILE_WARNINGS],[ then gl_WARN_ADD([-Werror]) fi - ;; + ;; *) - AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) - ;; + AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) + ;; esac WARN_LDFLAGS=$WARN_CFLAGS |