xref: /aosp_15_r20/external/minijail/platform2_preinstall.sh (revision 4b9c6d91573e8b3a96609339b46361b5476dd0f9)
1*4b9c6d91SCole Faust#!/bin/bash
2*4b9c6d91SCole Faust
3*4b9c6d91SCole Faust# Copyright 2015 The ChromiumOS Authors
4*4b9c6d91SCole Faust# Use of this source code is governed by a BSD-style license that can be
5*4b9c6d91SCole Faust# found in the LICENSE file.
6*4b9c6d91SCole Faust
7*4b9c6d91SCole Faustset -e
8*4b9c6d91SCole Faust
9*4b9c6d91SCole Faustv=$1
10*4b9c6d91SCole Faustinclude_dir=$2
11*4b9c6d91SCole Faust
12*4b9c6d91SCole Faustsed \
13*4b9c6d91SCole Faust  -e "s/@BSLOT@/${v}/g" \
14*4b9c6d91SCole Faust  -e "s:@INCLUDE_DIR@:${include_dir}:g" \
15*4b9c6d91SCole Faust  "libminijail.pc.in" > "libminijail.pc"
16