mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 05:56:58 +02:00
BUG=chromium-os:16364 TEST=Ran with symlinked directories Change-Id: I374eced27f1b0b3147b9632d5f9dd2637b0d7d28 Reviewed-on: http://gerrit.chromium.org/gerrit/2390 Reviewed-by: Daniel Erat <derat@chromium.org> Tested-by: David James <davidjames@chromium.org>
16 lines
530 B
Plaintext
16 lines
530 B
Plaintext
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
for board_root in /build/*; do
|
|
if [ -h "${board_root}" ]; then
|
|
board=$(basename "${board_root}")
|
|
info "Removing hard-coded paths to ${board_root} in *.pc files"
|
|
sudo find "${board_root}/usr" -type f -name '*.pc' | xargs sudo \
|
|
sed -i -e "s|${board_root}/|/|g"
|
|
fi
|
|
done
|
|
|
|
info "Chroot upgraded to version 5: fix symlinked *.pc files"
|
|
exit 0
|