blob: d82beaf0015f5f232ddceff2cd734dd8b0b9fc13 [file] [log] [blame]
#!/bin/bash
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set -eu
readonly DTC_PATH=$1
shift
readonly INCLUDE_DIRS=$1
shift
DTC_ARGS=""
if [[ "$INCLUDE_DIRS" != "--" ]]; then
for i in `cat "$INCLUDE_DIRS"`; do
DTC_ARGS="$DTC_ARGS -i $i"
done
fi
exec $DTC_PATH $@ $DTC_ARGS