Admin/Windows/Cygwin/isabelle/postinstall
author wenzelm
Mon, 16 Sep 2013 12:51:33 +0200
changeset 53658 9e8714b4661a
parent 52672 8de4235298cb
child 61737 b91b1ebfc8a0
permissions -rwxr-xr-x
updated to smlnj 110.76;

#!/bin/bash

export PATH=/bin

bash /etc/postinstall/base-files-mketc.sh.done

mkpasswd -l >/etc/passwd
mkgroup -l >/etc/group

find -type d -exec chmod 755 '{}' +
find -type f \( -name '*.exe' -o -name '*.dll' \) -exec chmod 755 '{}' +
find -type f -not -name '*.exe' -not -name '*.dll' -exec chmod 644 '{}' +
xargs -0 < contrib/cygwin/isabelle/executables chmod 755