blob: 7d2484f81340a37a6a1cccec8b9e0ec48810898c [file] [log] [blame]
Jason Jeremy Imanadffbcb2020-08-31 13:21:36 +09001#!/bin/bash
2
3# Copyright 2020 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
7set -e
8
9v=$1
10include_dir=$2
11out=$3
12
13sed \
14 -e "s/@BSLOT@/${v}/g" \
15 -e "s:@INCLUDE_DIR@:${include_dir}:g" \
16 "libpatchpanel-client.pc.in" > "${out}/libpatchpanel-client.pc"