diff options
author | EuAndreh <eu@euandre.org> | 2025-05-04 05:12:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-04 05:12:05 -0300 |
commit | 17351ac6cb396ba24a0e0c56996152c4b11e6b04 (patch) | |
tree | 1418ae539f896346782982f14d78f832a2ab805b | |
parent | re s/guuid/uuid/g (diff) | |
download | hsts-17351ac6cb396ba24a0e0c56996152c4b11e6b04.tar.gz hsts-17351ac6cb396ba24a0e0c56996152c4b11e6b04.tar.xz |
Make: Use $< over $?
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ src/version.go: Makefile echo 'package $(NAME); const Version = "$(VERSION)"' > $@ $(NAME).bin: src/main.bin - ln -fs $? $@ + ln -fs src/main.bin $@ |