mirror of
https://github.com/wfjm/w11.git
synced 2026-01-13 15:37:43 +00:00
- document urjtag build (jtag in Ubuntu 16.04 is broken) - add environment sanity wrappers for acroread,awk,firefox to ensure proper operation of vivado under Ubuntu 16.04
10 lines
264 B
Bash
Executable File
10 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# wrapper for the firefox command used in Xilinx ISE/Vivado
|
|
# it cleans up the environment
|
|
# following a suggestion of Clifford Wolf
|
|
#
|
|
unset LD_LIBRARY_PATH
|
|
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
exec firefox "$@"
|