Skip to content

Make the build reproducible #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.1
*.1.gz
10 changes: 5 additions & 5 deletions lsb_release/README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This directory contains:

src - directory containing the source for lsb_release
src - directory containing the source for lsb_release
lsb-release.spec - the spec file for generating RPM packages for lsb_release
debian - directory containing the necessary configuration files for
generating a deb packages for lsb_release
Expand All @@ -9,10 +9,10 @@ debian - directory containing the necessary configuration files for
Generating a release
--------------------

The man page for lsb_release is automatically created by a modified
version of the help2man program when the packages are constructed. The
Makefile in the src subdirectory contains the command line arguments
needed. The modified version of help2mn is included in this package.
The man page for lsb_release is automatically created by the help2man
program when the packages are constructed. Please ensure that the
program is available on the build system. The Makefile in the src
subdirectory contains the command line arguments needed.

1. Checkout a tagged release (eg Release_1_1) or a snapshot

Expand Down
4 changes: 2 additions & 2 deletions lsb_release/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ all: man
man: lsb_release.1.gz

lsb_release.1.gz: lsb_release
@./help2man -N --include ./lsb_release.examples --alt_version_key=program_version ./lsb_release >lsb_release.1
@gzip -9f lsb_release.1
@help2man -N --include ./lsb_release.examples --version-option=--program_version ./lsb_release >lsb_release.1
@gzip -9fn lsb_release.1

install: all
install -D -m 644 lsb_release.1.gz ${mandir}/man1/lsb_release.1.gz
Expand Down
Loading