]> git.ipfire.org Git - thirdparty/util-linux.git/blobdiff - tools/ko-release-gen
Manual pages: Standardize on OPTIONS as section title
[thirdparty/util-linux.git] / tools / ko-release-gen
index 9c2b5b471ac891072ad3222c55eef105203b8536..9f904d1b1fcd06d012e91b11d962b77e9720fbda 100755 (executable)
@@ -27,7 +27,8 @@ VERSION_MAJOR=$(echo $VERSION | sed 's/-rc[0-9]//; s/\(.*\..*\)\..*/\1/')
 VERSION_DOCS=$(echo $VERSION | sed 's/-rc[0-9]//')
 DISTDIR=${1:-"kernel.org"}/v${VERSION_MAJOR}
 
-GPG_CMD="gpg --use-agent --armor --detach-sign --quiet"
+GPG_PROG=${GPG_PROG:-"gpg"}
+GPG_CMD="$GPG_PROG --use-agent --armor --detach-sign --quiet"
 
 die() {
        echo $1
@@ -69,7 +70,7 @@ add_file() {
 add_html_dir() {
        local src="$1"          # source dir
        local tgt="$2"          # target dir
-       
+
        for fl in $(ls $src/*.html $src/*.css $src/*.png); do
                add_file $fl $tgt
        done
@@ -84,6 +85,8 @@ add_file      v${VERSION}-ChangeLog
 add_file       Documentation/releases/v${VERSION_DOCS}-ReleaseNotes
 add_html_dir   libmount/docs/html libmount-docs
 add_html_dir   libblkid/docs/html libblkid-docs
+add_html_dir   libsmartcols/docs/html libsmartcols-docs
+add_html_dir   libfdisk/docs/html libfdisk-docs
 
 killall gpg-agent