diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-11 14:25:37 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-11 14:25:37 -0400 |
commit | 12ce2b2e8547477fe5b544b2be823bc5365507d9 (patch) | |
tree | 4ffac066319ac7b54999a00df2edb91dc28e8182 | |
parent | 000ceddf7b607c70297d2dbdee4a800423975fc1 (diff) | |
download | bfs-12ce2b2e8547477fe5b544b2be823bc5365507d9.tar.xz |
build: Fix FreeBSD *SAN builds
-rwxr-xr-x | config/vars.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/vars.sh b/config/vars.sh index c0fb124..8a781bb 100755 --- a/config/vars.sh +++ b/config/vars.sh @@ -76,6 +76,6 @@ print PKGS # Disable ASLR on FreeBSD when sanitizers are enabled case "$XOS-$SAN" in FreeBSD-*y*) - printf 'POSTLINK = elfctl -e +noaslr $$@\n' + printf 'POSTLINK = elfctl -e +noaslr $@\n' ;; esac |