mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-23 09:14:27 +01:00
1. Fix config installation not exec permission is needed.
2. Makefile install all in DESTDIR.
make install DESTDIR=/tmp/dest/
Before:
$tree /tmp/dest/
/tmp/dest/
└── usr
├── bin
│ └── kata-collect-data.sh
└── share
└── defaults
└── kata-containers
└── configuration.toml
5 directories, 2 files
Now:
$tree /tmp/dest/
/tmp/dest/
└── usr
├── local
│ └── bin
│ ├── kata-collect-data.sh
│ └── kata-runtime
└── share
├── bash-completion
│ └── completions
│ └── kata-runtime
└── defaults
└── kata-containers
└── configuration.toml
Fixes: #401
Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>