diff options
| author | Russ Allbery <eagle@eyrie.org> | 2018-06-03 18:00:50 -0700 | 
|---|---|---|
| committer | Russ Allbery <eagle@eyrie.org> | 2018-06-03 18:01:25 -0700 | 
| commit | 26e83dabb2f9ceea7de5f67e477769594f3c33b9 (patch) | |
| tree | a180a7e7ffdb5976e19fb4ef72a2155834ca9b86 | |
| parent | e37de01137270d9322405a3bf87035d032228fac (diff) | |
Generate man page for contrib/ad-keytab
| -rw-r--r-- | Makefile.am | 16 | ||||
| -rwxr-xr-x | bootstrap | 4 | 
2 files changed, 10 insertions, 10 deletions
| diff --git a/Makefile.am b/Makefile.am index 95fc17a..ba7b1be 100644 --- a/Makefile.am +++ b/Makefile.am @@ -104,14 +104,14 @@ EXTRA_DIST = .gitignore .travis.yml LICENSE README.md bootstrap		    \  	client/wallet.pod client/wallet-rekey.pod config/allow-extract	    \  	config/keytab config/keytab.acl config/wallet			    \  	config/wallet-report.acl docs/design contrib/README		    \ -	contrib/ad-keytab contrib/commerzbank/wallet-history		    \ -	contrib/convert-srvtab-db contrib/used-principals		    \ -	contrib/wallet-contacts contrib/wallet-rekey-periodic		    \ -	contrib/wallet-rekey-periodic.8 contrib/wallet-summary		    \ -	contrib/wallet-summary.8 contrib/wallet-unknown-hosts		    \ -	contrib/wallet-unknown-hosts.8 docs/design-acl docs/design-api	    \ -	docs/metadata docs/netdb-role-api docs/notes			    \ -	docs/objects-and-schemes docs/setup docs/stanford-naming	    \ +	contrib/ad-keytab contrib/ad-keytab.8				    \ +	contrib/commerzbank/wallet-history contrib/convert-srvtab-db	    \ +	contrib/used-principals contrib/wallet-contacts			    \ +	contrib/wallet-rekey-periodic contrib/wallet-rekey-periodic.8	    \ +	contrib/wallet-summary contrib/wallet-summary.8			    \ +	contrib/wallet-unknown-hosts contrib/wallet-unknown-hosts.8	    \ +	docs/design-acl docs/design-api docs/metadata docs/netdb-role-api   \ +	docs/notes docs/objects-and-schemes docs/setup docs/stanford-naming \  	examples/stanford.conf server/keytab-backend.in			    \  	server/wallet-admin.in server/wallet-backend.in			    \  	server/wallet-report.in tests/README tests/TESTS		    \ @@ -13,8 +13,8 @@ for doc in client/wallet client/wallet-rekey ; do      pod2man --release="$version" --center=wallet \          --name=`basename "$doc" | tr a-z A-Z` "$doc".pod > "$doc".1  done -for doc in contrib/wallet-rekey-periodic contrib/wallet-summary  \ -           contrib/wallet-unknown-hosts ; do +for doc in contrib/ad-keytab contrib/wallet-rekey-periodic \ +           contrib/wallet-summary contrib/wallet-unknown-hosts ; do      pod2man --release="$version" --center=wallet --section=8 \          --name=`basename "$doc" | tr a-z A-Z` "$doc" > "$doc".8  done | 
