Actions
User story #4605
closedUser story #4595: Support for AIX (agent only)
Avoid using "install -d" in FusionInventory build
Effort required:
Name check:
Fix check:
Regression:
Description
The -d (--directory) option to install is not available on all platforms (in particular AIX). It behaves the same as mkdir -p, except that permissions are unpredicatable due to potential interference from users' umask.
The usage in FusionInventory's Makefile.PL is always install -d -m 755 so I'm adding a patch to replace these calls by mkdir -p and chmod 755.
I have contributed this upstream here: https://github.com/fusinv/fusioninventory-agent/pull/14/files.
Actions