From 028dd2b81e2c2599b9db1aac9b28ef1c82b28cdb Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Wed, 26 Feb 2014 12:56:06 -0700 Subject: [PATCH] build: ignore cygwin toolchain droppings The cygwin compiler automatically creates a '*.exe.manifest' companion file for any .exe file that contains a substring that would otherwise cause newer Windows to pester users about needing admin rights (such as "update", "instal", "setup"...). This means that compilation on cygwin left behind tests/networkxml2xmlupdatetest.exe.manifest. * .gitignore: Ignore manifest files. Signed-off-by: Eric Blake --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 69c81dfd1e..1b063e1890 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ *.a *.cov *.exe +*.exe.manifest *.gcda *.gcno *.gcov -- GitLab