diff options
author | EuAndreh <eu@euandre.org> | 2024-09-27 15:23:04 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-09-27 15:23:04 -0300 |
commit | 05f1c7208126114ecac92c9b8a754b8d4dc47e8e (patch) | |
tree | ad4cf358b3bcfb5fa659ded6a859743142b5a219 | |
parent | src/guuid.go: Add NewBytes() function (diff) | |
download | uuid-05f1c7208126114ecac92c9b8a754b8d4dc47e8e.tar.gz uuid-05f1c7208126114ecac92c9b8a754b8d4dc47e8e.tar.xz |
Makefile: "var version" -> "const Version"
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ tests/main.bin: tests/main.a go tool link $(GOLDFLAGS) -o $@ -L $(@D) --extldflags '$(LDLIBS)' $*.a src/version.go: Makefile - echo 'package $(NAME); var version = "$(VERSION)"' > $@ + echo 'package $(NAME); const Version = "$(VERSION)"' > $@ |