]> git.proxmox.com Git - mirror_edk2.git/blame - 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
5ef6e0d3
LG
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>
2e351cbe 6# SPDX-License-Identifier: BSD-2-Clause-Patent
5ef6e0d3
LG
7#
8
8d0776f3
CD
9for arg; do
10 case $arg in
11 -e|-d)
12 set -- "$@" --f86
13 break
14 ;;
15esac
5ef6e0d3 16
8d0776f3 17exec LzmaCompress "$@"