diff options
| author | 2021-01-03 16:17:36 -0600 | |
|---|---|---|
| committer | 2021-01-03 16:17:36 -0600 | |
| commit | c357af02c2c6d44e2e596cd3c7c46f3589b18279 (patch) | |
| tree | e98fc4528dbdd48405e3debb2c2531b62e47b4f9 /Makefile | |
| parent | Don't fail jpm if os/realpath fails. (diff) | |
Allow iterating over fibers with each and similar.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# Copyright (c) 2020 Calvin Rose +# Copyright (c) 2021 Calvin Rose # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -27,7 +27,7 @@ PREFIX?=/usr/local INCLUDEDIR?=$(PREFIX)/include BINDIR?=$(PREFIX)/bin LIBDIR?=$(PREFIX)/lib -JANET_BUILD?="\"$(shell git log --pretty=format:'%h' -n &>2 /dev/null || echo local)\"" +JANET_BUILD?="\"$(shell git log --pretty=format:'%h' -n 2> /dev/null || echo local)\"" CLIBS=-lm -lpthread JANET_TARGET=build/janet JANET_LIBRARY=build/libjanet.so |
