diff options
author | Tobias Kortkamp <t@tobik.me> | 2019-09-05 11:00:37 +0200 |
---|---|---|
committer | Tobias Kortkamp <t@tobik.me> | 2019-09-05 11:00:37 +0200 |
commit | 84161d7c9df65aedca5655c7a3ed94f2689304b7 (patch) | |
tree | 73d0e2f9d419285708fd8204c1e99ac86c79c0e6 | |
parent | c8c5ec254af581814037d9853ad76975258d29ae (diff) | |
download | afl++-84161d7c9df65aedca5655c7a3ed94f2689304b7.tar.gz |
Use date -I instead of date --iso-8601
FreeBSD's date(1) does not support the long argument form. Signed-off-by: Tobias Kortkamp <t@tobik.me>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 455facf2..ca9363c2 100644 --- a/Makefile +++ b/Makefile @@ -213,7 +213,7 @@ clean: $(MAKE) -C qemu_mode/libcompcov clean %.8: % - @echo .TH $* 8 `date --iso-8601` "afl++" > $@ + @echo .TH $* 8 `date -I` "afl++" > $@ @echo .SH NAME >> $@ @echo .B $* >> $@ @echo >> $@ |