diff options
author | Brent Cook <bcook@openbsd.org> | 2015-09-10 07:18:08 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-09-11 16:37:59 -0500 |
commit | b8853fd092726a9daf6e8d503885d77a443af50e (patch) | |
tree | d675e529826d09744d734367386cbd13eb1f2718 | |
parent | aad86fe1f9c9f875f9c146e7d1ad5f032ae1b3c4 (diff) | |
download | portable-b8853fd092726a9daf6e8d503885d77a443af50e.tar.gz portable-b8853fd092726a9daf6e8d503885d77a443af50e.tar.bz2 portable-b8853fd092726a9daf6e8d503885d77a443af50e.zip |
ensure headers are sanitized before release
When a public header is removed, we need to ensure it gets removed
in the release distribution as well. Also, remove nonexistent *.he
exclude.
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | dist.sh | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -106,7 +106,6 @@ tls/*.h | |||
106 | include/pqueue.h | 106 | include/pqueue.h |
107 | include/tls.h | 107 | include/tls.h |
108 | include/openssl/*.h | 108 | include/openssl/*.h |
109 | include/openssl/*.he | ||
110 | 109 | ||
111 | !/apps/apps_win.c | 110 | !/apps/apps_win.c |
112 | !/apps/poll_win.c | 111 | !/apps/poll_win.c |
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | set -e | 2 | set -e |
3 | 3 | ||
4 | rm -f man/*.1 man/*.3 | 4 | rm -f man/*.1 man/*.3 include/openssl/*.h |
5 | ./autogen.sh | 5 | ./autogen.sh |
6 | ./configure | 6 | ./configure |
7 | make distcheck | 7 | make distcheck |