diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2020-09-12 00:50:29 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2020-09-12 00:50:29 +0100 |
commit | 13ab608a4bb4b6093c6095a2a0b975a3572855c2 (patch) | |
tree | 279ae9151b068a495baad1f0d93f96a63f71ff43 /link | |
parent | 8d1175ab41dd64de007628def55e8c4b19c7538c (diff) | |
download | pack-13ab608a4bb4b6093c6095a2a0b975a3572855c2.tar.gz pack-13ab608a4bb4b6093c6095a2a0b975a3572855c2.tar.xz pack-13ab608a4bb4b6093c6095a2a0b975a3572855c2.zip |
build: Fix flag passing to the linker and compiler.
Diffstat (limited to 'link')
-rw-r--r-- | link | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ #/fake/bash redo-ifchange "$0" "link" "${deps[@]}" . loadargs "link" -gcc -o "$3" "${deps[@]}" +gcc "${args[@]}" -o "$3" "${deps[@]}" |