diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-03-01 22:41:51 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-03-01 22:41:51 -0500 |
commit | 291857a1ca2bc0b23bcf346574af2471ff7c4e68 (patch) | |
tree | 1d192c705cd987ee36483fa7fc6363d0077cbb13 /etc/pkgs | |
parent | 81a1de455df400ca1e42c11e3766d2933ce53175 (diff) | |
download | docker-base-291857a1ca2bc0b23bcf346574af2471ff7c4e68.tar.gz |
git build:
* Fix make targets
* Do not use libexec
Diffstat (limited to 'etc/pkgs')
-rwxr-xr-x | etc/pkgs/005-git.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/pkgs/005-git.sh b/etc/pkgs/005-git.sh index 11e27c5..887a59c 100755 --- a/etc/pkgs/005-git.sh +++ b/etc/pkgs/005-git.sh @@ -11,8 +11,10 @@ tar xf ${name}-${version}.tar.xz pushd ${name}-${version} make configure ./configure --prefix=${TOOLCHAIN} \ + --libexecdir=${TOOLCHAIN_LIB}/git \ --with-curl \ --with-openssl=${TOOLCHAIN} make -j${_maxjobs} - make install-strip + make strip + make install popd |