|
OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/sh | |
2 | |
3 # Copyright (c) 2008 The Chromium 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 -ex | |
8 GENERATED_DIR="${CONFIGURATION_TEMP_DIR}/generated" | |
9 OUTDIR="${GENERATED_DIR}/pcre" | |
10 CHARTABLES="${OUTDIR}/chartables.c" | |
11 DFTABLES="${SOURCE_ROOT}/../third_party/WebKit/JavaScriptCore/pcre/dftables" | |
12 | |
13 mkdir -p "${OUTDIR}" | |
14 perl -w "${DFTABLES}" "${CHARTABLES}" | |
OLD | NEW |