mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-14 01:35:40 +00:00
Remove obsolete setprops script.
This commit is contained in:
parent
d6886e2230
commit
b915055c2b
2 changed files with 1 additions and 25 deletions
|
@ -12,8 +12,7 @@ EXTRA_DIST = \
|
|||
autogen.sh \
|
||||
m4/ax_gcc_builtin.m4 \
|
||||
m4/ax_pkg_config.m4 \
|
||||
tools/coverage.sh.in \
|
||||
tools/setprops.sh
|
||||
tools/coverage.sh.in
|
||||
|
||||
if CRYB_CORE
|
||||
aclocaldir = $(datarootdir)/aclocal
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
istext() {
|
||||
local mimetype=$(svn propget svn:mime-type "$1" 2>/dev/null)
|
||||
[ -z "$mimetype" ] || expr "$mimetype" : '^text/.' >/dev/null
|
||||
}
|
||||
|
||||
(svn list -R ; svn stat | awk '$1 == "A" { print $2 }') | sort -u |
|
||||
while read f ; do
|
||||
[ -f "$f" ] || continue
|
||||
istext "$f" || continue
|
||||
case $f in
|
||||
*rsaref*.[ch])
|
||||
;;
|
||||
*.sh|*.pl)
|
||||
svn propset svn:executable \* $f
|
||||
;&
|
||||
*)
|
||||
svn propset eol-style native $f
|
||||
#svn propset svn:keywords "Cryb=%H" $f
|
||||
;;
|
||||
esac
|
||||
done
|
Loading…
Reference in a new issue