8 lines
139 B
Bash
8 lines
139 B
Bash
#!/bin/bash
|
|
|
|
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
|
|
|
|
if [[ $(ld --version) =~ "gold" ]] ; then
|
|
ewarn "ld gold is in use!!"
|
|
fi
|