Bertrand SIMONNET | 10953b5 | 2015-08-13 14:27:05 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
Mike Frysinger | 4c33189 | 2022-09-13 05:17:08 -0400 | [diff] [blame] | 3 | # Copyright 2015 The ChromiumOS Authors |
Bertrand SIMONNET | 10953b5 | 2015-08-13 14:27:05 -0700 | [diff] [blame] | 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 | |||||
12 | sed \ | ||||
13 | -e "s/@BSLOT@/${v}/g" \ | ||||
14 | -e "s:@INCLUDE_DIR@:${include_dir}:g" \ | ||||
15 | "libminijail.pc.in" > "libminijail.pc" |