diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-10-04 19:44:47 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-10-04 19:44:47 +0200 |
commit | 265704d73647e0d4823126bbb7ddde1d415a618d (patch) | |
tree | fedc0f6430984a048cc37e4ff8f30ae9980c1846 | |
parent | 35633d45672d14bd798c478c45d1a17064701aa9 (diff) | |
download | slock-265704d73647e0d4823126bbb7ddde1d415a618d.tar.gz slock-265704d73647e0d4823126bbb7ddde1d415a618d.tar.xz |
Makefile: explicit_bzero.c was copied twice (GNU make gives a warning)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ dist: clean @echo creating dist tarball @mkdir -p slock-${VERSION} @cp -R LICENSE Makefile README slock.1 config.mk \ - ${SRC} explicit_bzero.c config.def.h arg.h util.h slock-${VERSION} + ${SRC} config.def.h arg.h util.h slock-${VERSION} @tar -cf slock-${VERSION}.tar slock-${VERSION} @gzip slock-${VERSION}.tar @rm -rf slock-${VERSION} |