blob: 78bca35f9cc3688e9300f76252225d9d4a0f4ad2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/sh
#Run this on developer side, and distribute troff
#in case the end user doesn't have pod2man
rm -f fix-gnustack.1
pod2man \
--official \
--section="1" \
--release="elfix 0.2" \
--center="Documentation for elfix" \
--date="2011-04-14" \
fix-gnustack.pod > fix-gnustack.1
pod2man \
--official \
--section="1" \
--release="elfix 0.2" \
--center="Documentation for elfix" \
--date="2011-08-18" \
paxctl-ng.pod > paxctl-ng.1
pod2man \
--official \
--section="1" \
--release="elfix 0.2" \
--center="Documentation for elfix" \
--date="2011-10-19" \
revdep-pax.pod > revdep-pax.1
|