summaryrefslogtreecommitdiff
path: root/etc/pkgs
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-03-01 22:41:51 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-03-01 22:41:51 -0500
commit291857a1ca2bc0b23bcf346574af2471ff7c4e68 (patch)
tree1d192c705cd987ee36483fa7fc6363d0077cbb13 /etc/pkgs
parent81a1de455df400ca1e42c11e3766d2933ce53175 (diff)
downloaddocker-base-291857a1ca2bc0b23bcf346574af2471ff7c4e68.tar.gz
git build:
* Fix make targets * Do not use libexec
Diffstat (limited to 'etc/pkgs')
-rwxr-xr-xetc/pkgs/005-git.sh4
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