Skip to content
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

Add missing file to dist tarball to build documentation #3063

Merged
merged 5 commits into from
Mar 9, 2024
Merged
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
3 changes: 2 additions & 1 deletion .github/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ else
fi
# normal procedure

CONFIGURE_FLAGS="--disable-dependency-tracking"
CONFIGURE_FLAGS="--disable-dependency-tracking --enable-doc"
if [ "$1" == "piv-sm" ]; then
CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-piv-sm"
fi
Expand Down Expand Up @@ -92,6 +92,7 @@ fi
# this is broken in old ubuntu
if [ "$1" == "dist" -o "$2" == "dist" ]; then
set +e
DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"
make distcheck
RV=$?
if [ $RV -ne 0 ]; then
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# OpenSC documentation

Manual pages for the [OpenSC command line tools](htmlpreview.github.io/?https://github.com/OpenSC/OpenSC/blob/master/doc/tools/tools.html) as well as for the [OpenSC configuration files](http:https://htmlpreview.github.io/?https://github.com/OpenSC/OpenSC/blob/master/doc/files/files.html) are available online and typically distributed along with your installation.
Manual pages for the
[OpenSC command line tools](https://htmlpreview.github.io/?https://github.com/OpenSC/OpenSC/blob/master/doc/tools/tools.html)
as well as for the
[OpenSC configuration files](https://htmlpreview.github.io/?https://github.com/OpenSC/OpenSC/blob/master/doc/files/files.html)
are available online and typically distributed along with your installation.

The [OpenSC Wiki](https://github.com/OpenSC/OpenSC/wiki) includes, among others, information for:
* [Windows Quick Start](https://github.com/OpenSC/OpenSC/wiki/Windows-Quick-Start)
Expand Down Expand Up @@ -29,7 +33,7 @@ Nightly builds are available by their git hash in branches of [OpenSC/Nightly](h

[![Linux build](https://github.com/OpenSC/OpenSC/actions/workflows/linux.yml/badge.svg)](https://github.com/OpenSC/OpenSC/actions/workflows/linux.yml)
[![OSX build](https://github.com/OpenSC/OpenSC/actions/workflows/macos.yml/badge.svg)](https://github.com/OpenSC/OpenSC/actions/workflows/macos.yml)
[![AppVeyor CI Build Status](https://ci.appveyor.com/api/projects/status/github/OpenSC/OpenSC?branch=master&svg=true)](https://ci.appveyor.com/project/LudovicRousseau/OpenSC/branch/master)
[![AppVeyor CI Build Status](https://ci.appveyor.com/api/projects/status/github/OpenSC/OpenSC?branch=master&svg=true)](https://ci.appveyor.com/project/frankmorgner/opensc/branch/master)
[![Coverity Scan Status](https://scan.coverity.com/projects/4026/badge.svg)](https://scan.coverity.com/projects/4026)
[![CodeQL](https://github.com/OpenSC/OpenSC/actions/workflows/codeql.yml/badge.svg?event=push)](https://github.com/OpenSC/OpenSC/actions/workflows/codeql.yml)
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/opensc.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:opensc)
Expand Down
2 changes: 1 addition & 1 deletion doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ MAINTAINERCLEANFILES = $(srcdir)/Makefile.in

SUBDIRS = tools files

dist_noinst_SCRIPTS = html.xsl man.xsl
dist_noinst_SCRIPTS = html.xsl docbook-utf8.xsl man.xsl
dist_noinst_DATA = api.css
Loading