blob: 52037a650cbf021e4062c31fc0abc9a8daa25eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#
# set -o errexit -o noglob are assumed.
#
: ${PKG_GIT_CONFIG_CACHE_EXTRA:="
ac_cv_fread_reads_directories=1
ac_cv_snprintf_returns_bogus=0"};
pkg_git_install_post() {
local __ _new;
for __ in $(find "${PKG_DESTDIR}" -name "Git*::*" -type f); do
_new="$(echo ${__} | sed "s/::/./g")";
ex_build_fileop mv "${__}" "${_new}";
done;
};
# vim:filetype=sh
|