From: Matthias Bolte Date: Sat, 29 Mar 2014 11:16:38 +0000 (+0100) Subject: Prohibit Windows special chars in filenames X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8f21ae7046c5d7ed4b76ae757c5aa3e3a496d52d;p=libvirt.git Prohibit Windows special chars in filenames Using any of these chars [:*?"<>|] in a filename is forbidden on Windows and breaks git operations on Windows as git is not able to create those files/directories on clone or pull. Because some of them can be used in UNIX filenames they tend to creep into filenames; especially : in PCI/SCSI device names that are used as filenames in test cases. --- diff --git a/cfg.mk b/cfg.mk index a4ae9783b3..117584ceb2 100644 --- a/cfg.mk +++ b/cfg.mk @@ -912,6 +912,11 @@ sc_curly_braces_style: 'braces around function body, see' \ 'HACKING' 1>&2; exit 1; } || : +sc_prohibit_windows_special_chars_in_filename: + @files=$$($(VC_LIST_EXCEPT) | grep '[:*?"<>|]'); \ + test -n "$$files" && { echo '$(ME): Windows special chars' \ + 'in filename not allowed:' 1>&2; echo $$files 1>&2; exit 1; } || : + # We don't use this feature of maint.mk. prev_version_file = /dev/null