fixed issue reported by serge on irc, util.c was excluded in dist target - sic … | |
git clone git://git.suckless.org/sic | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit fdaf2adbc98db2979e68fbb653620a974c338d0a | |
parent a4ba8e3b08cff1046e87c59ad688b8f7f6c42a41 | |
Author: [email protected] <unknown> | |
Date: Fri, 6 Aug 2010 09:52:12 +0100 | |
fixed issue reported by serge on irc, util.c was excluded in dist target | |
Diffstat: | |
M Makefile | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -30,7 +30,7 @@ clean: | |
dist: clean | |
@echo creating dist tarball | |
@mkdir -p sic-${VERSION} | |
- @cp -R LICENSE Makefile README config.mk sic.1 ${SRC} sic-${VERSION} | |
+ @cp -R LICENSE Makefile README config.mk sic.1 sic.c util.c sic-${VERS… | |
@tar -cf sic-${VERSION}.tar sic-${VERSION} | |
@gzip sic-${VERSION}.tar | |
@rm -rf sic-${VERSION} |