diff options
author | Adrian Byszuk <adrian.byszuk@gmail.com> | 2021-03-05 17:42:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 17:42:29 +0100 |
commit | 80b41f38598931c14db30232b8b38b12186c156d (patch) | |
tree | 933bfc5dfc12fc2b31cbf697fa25b3b25ec16e7f | |
parent | 062ff5b6a41caf93e03c417e31a8a6471993abf1 (diff) | |
download | ghdl-80b41f38598931c14db30232b8b38b12186c156d.tar.gz ghdl-80b41f38598931c14db30232b8b38b12186c156d.tar.bz2 ghdl-80b41f38598931c14db30232b8b38b12186c156d.zip |
scripts/vendors: fix typo in deprecated script param (#1673)
Pull request #1653 reintroduced deprecated script params, but with a
typo in one of the vendor scripts.
Co-authored-by: Adrian Byszuk <adrian.byszuk@cern.ch>
-rwxr-xr-x | scripts/vendors/compile-xilinx-ise.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vendors/compile-xilinx-ise.sh b/scripts/vendors/compile-xilinx-ise.sh index 2e3cc3355..354193501 100755 --- a/scripts/vendors/compile-xilinx-ise.sh +++ b/scripts/vendors/compile-xilinx-ise.sh @@ -121,11 +121,11 @@ while [[ $# -gt 0 ]]; do GHDL="$2" # overwrite a potentially existing GHDL environment variable shift # skip argument ;; - -src|--source) + --src|--source) SrcDir="$2" shift # skip argument ;; - -out|--output) + --out|--output) DestDir="$2" shift # skip argument ;; |