diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2016-01-19 00:36:13 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-20 02:27:21 +0700 |
commit | e80ec214ef81e78fb774e3f683398cb7705df9aa (patch) | |
tree | 22149845646c7f33b2ea440298bebcb0cf197202 /office/devtodo | |
parent | cefc5100edfdcf41a384d611e778453a2a1786b2 (diff) | |
download | slackbuilds-e80ec214ef81e78fb774e3f683398cb7705df9aa.tar.gz |
office/devtodo: Fixed file ownership.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/devtodo')
-rw-r--r-- | office/devtodo/devtodo.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/office/devtodo/devtodo.SlackBuild b/office/devtodo/devtodo.SlackBuild index 424b70f275..84eb8899d4 100644 --- a/office/devtodo/devtodo.SlackBuild +++ b/office/devtodo/devtodo.SlackBuild @@ -64,12 +64,12 @@ cd $TMP rm -rf $TMP/$PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION - +chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; # Patch so it compiles on x86_64, and fix for missing C++ includes. patch -p1 < $CWD/c++includes.patch |