mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2024-11-22 22:55:06 +00:00
Fixed a bug with shell script and added gitattributes to prevent non-binary pulls
Cygwin was unable to filter the specs files using the blacklist due to the argument in find was -name *.txt instead of -name "*.txt" . Also, it is currently possible to pull under windows to result in CRLF line endings in scripts and other source files that destroy the build. .gitattributes were added to prevent non-binary pulls. Both issues are fixed with this pull request.
This commit is contained in:
parent
bffebf81cc
commit
1682c7ae3e
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
* binary
|
@ -19,7 +19,8 @@ if [ ! -d $1 ] ; then
|
||||
mkdir -p $1
|
||||
|
||||
# Parse each of the extensions in the registry
|
||||
find $2 -name doc -type d -prune -o -name \*.txt -print | \
|
||||
find $2 -name doc -type d -prune -o -name \
|
||||
"*.txt" -print | \
|
||||
grep -v -f $3 | sort | bin/parse_spec.pl $1
|
||||
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user