Skip to content

Commit

Permalink
Create a top-level dir for libtool
Browse files Browse the repository at this point in the history
After using jammy's source instead
(cloudfoundry/wg-app-platform-runtime-ci@f9c4a93),
the new blob will need a top-level dir.

Context: 576d2dc
  • Loading branch information
winkingturtle-vmw authored and geofffranks committed Sep 25, 2024
1 parent 576d2dc commit fb83c77
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/libtool/packaging
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail

tar xzf libtool/libtool-*.tar.gz
mkdir -p libtool-build
tar xzf libtool/libtool-*.tar.gz -C libtool-build

cd libtool-*
pushd libtool-build

./configure "--prefix=${BOSH_INSTALL_TARGET}"
make
make install "prefix=${BOSH_INSTALL_TARGET}"

popd

0 comments on commit fb83c77

Please sign in to comment.