author | wenzelm |
Sun, 10 Aug 2014 20:45:48 +0200 | |
changeset 57889 | 049e13f616d4 |
parent 52672 | 8de4235298cb |
child 61737 | b91b1ebfc8a0 |
permissions | -rwxr-xr-x |
50977
983794d3b84f
more generous C stack size as in Linux and Mac OS X, to reduce chance of Cygwin-specific crashes;
wenzelm
parents:
50807
diff
changeset
|
1 |
#!/bin/bash |
50807 | 2 |
|
52672 | 3 |
export PATH=/bin |
50807 | 4 |
|
5 |
bash /etc/postinstall/base-files-mketc.sh.done |
|
6 |
||
7 |
mkpasswd -l >/etc/passwd |
|
8 |
mkgroup -l >/etc/group |
|
50978 | 9 |
|
52672 | 10 |
find -type d -exec chmod 755 '{}' + |
11 |
find -type f \( -name '*.exe' -o -name '*.dll' \) -exec chmod 755 '{}' + |
|
12 |
find -type f -not -name '*.exe' -not -name '*.dll' -exec chmod 644 '{}' + |
|
13 |
xargs -0 < contrib/cygwin/isabelle/executables chmod 755 |
|
14 |