diff options
author | John Stebbins <[email protected]> | 2019-09-11 10:06:59 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-09-12 10:25:07 -0700 |
commit | 89dbcaf6c5d02169f1f9472dc64583a0b814fdc4 (patch) | |
tree | 1d2f07dd575fbbbc84c33d6a6a683f095361c8bb /scripts | |
parent | 1b7948495fcf4d511e62d7f9c3a0c1a3ccb59f80 (diff) |
scripts: update builtin preset script
Script now puts the built-in preset header in the new header file
location libhb/handbrake/
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-presets.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-presets.sh b/scripts/build-presets.sh index d739994f4..1f9850315 100755 --- a/scripts/build-presets.sh +++ b/scripts/build-presets.sh @@ -25,6 +25,6 @@ trap "rm ${JSON_TEMP} ${C_TEMP}" EXIT INT TERM echo 'const char hb_builtin_presets_json[] =' > "${C_TEMP}" "${SELF_DIR}/quotestring.py" "${JSON_TEMP}" >> "${C_TEMP}" echo ';' >> "${C_TEMP}" -cp "${C_TEMP}" "${LIBHB_DIR}/preset_builtin.h" +cp "${C_TEMP}" "${LIBHB_DIR}/handbrake/preset_builtin.h" exit 0 |