fix(build_image): Replace two lingering pbzip2 references with lbzip2

This commit is contained in:
Michael Marineau 2013-09-19 20:53:02 -04:00
parent e2b35bbae1
commit e15457054a
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ create_base_image() {
# Empty lib dirs, replaced by symlinks # Empty lib dirs, replaced by symlinks
'lib' 'lib'
) )
pbzip2 -dc --ignore-trailing-garbage=1 "${LIBC_PATH}" | \ lbzip2 -dc "${LIBC_PATH}" | \
sudo tar xpf - -C "${root_fs_dir}" ./usr/${CHOST} \ sudo tar xpf - -C "${root_fs_dir}" ./usr/${CHOST} \
--strip-components=3 "${libc_excludes[@]/#/--exclude=}" --strip-components=3 "${libc_excludes[@]/#/--exclude=}"

View File

@ -25,7 +25,7 @@ install_dev_packages() {
# Copy over the libc debug info so that gdb # Copy over the libc debug info so that gdb
# works with threads and also for a better debugging experience. # works with threads and also for a better debugging experience.
sudo mkdir -p "${root_fs_dir}/usr/lib/debug" sudo mkdir -p "${root_fs_dir}/usr/lib/debug"
pbzip2 -dc --ignore-trailing-garbage=1 "${LIBC_PATH}" | \ lbzip2 -dc "${LIBC_PATH}" | \
sudo tar xpf - -C "${root_fs_dir}/usr/lib/debug" \ sudo tar xpf - -C "${root_fs_dir}/usr/lib/debug" \
./usr/lib/debug/usr/${CHOST} --strip-components=6 ./usr/lib/debug/usr/${CHOST} --strip-components=6