diff options
author | Brent Cook <bcook@openbsd.org> | 2014-10-14 20:54:42 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-10-14 20:54:42 -0500 |
commit | 3d3c24670a5e445dca61fb2d248d6f695371780e (patch) | |
tree | 603075e2df104f6af778ff31e020412c660c1c1f | |
parent | cf1c1f350c502e20717aa966c656edf7c2954991 (diff) | |
download | portable-3d3c24670a5e445dca61fb2d248d6f695371780e.tar.gz portable-3d3c24670a5e445dca61fb2d248d6f695371780e.tar.bz2 portable-3d3c24670a5e445dca61fb2d248d6f695371780e.zip |
don't fail to make dist on a clean repo
-rwxr-xr-x | dist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | set -e | 2 | set -e |
3 | 3 | ||
4 | rm man/*.1 man/*.3 | 4 | rm -f man/*.1 man/*.3 |
5 | ./autogen.sh | 5 | ./autogen.sh |
6 | ./configure | 6 | ./configure |
7 | make dist | 7 | make dist |