]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Bin / CYGWIN_NT-5.1-i686 / LzmaF86Compress
... / ...
CommitLineData
1#!/usr/bin/env bash
2#
3# This script will exec LzmaCompress tool with --f86 option that enables converter for x86 code.
4#
5# Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>
6# SPDX-License-Identifier: BSD-2-Clause-Patent
7#
8
9for arg; do
10 case $arg in
11 -e|-d)
12 set -- "$@" --f86
13 break
14 ;;
15esac
16
17exec LzmaCompress "$@"