Garrick Evans | 4b66f63 | 2019-01-24 15:09:16 +0900 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # Copyright 2016 The Chromium OS Authors. All rights reserved. |
| 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | # found in the LICENSE file. |
| 6 | |
| 7 | set -e |
| 8 | |
| 9 | v=$1 |
| 10 | include_dir=$2 |
| 11 | out=$3 |
| 12 | |
| 13 | sed \ |
| 14 | -e "s/@BSLOT@/${v}/g" \ |
| 15 | -e "s:@INCLUDE_DIR@:${include_dir}:g" \ |
| 16 | "libarcnetwork-util.pc.in" > "${out}/libarcnetwork-util.pc" |
Garrick Evans | 0884393 | 2019-09-17 14:41:08 +0900 | [diff] [blame] | 17 | |
| 18 | sed \ |
| 19 | -e "s/@BSLOT@/${v}/g" \ |
| 20 | -e "s:@INCLUDE_DIR@:${include_dir}:g" \ |
| 21 | "libpatchpanel-client.pc.in" > "${out}/libpatchpanel-client.pc" |