Skip to content

Commit

Permalink
Do not install man-pages during openssl-static build to speed up thin…
Browse files Browse the repository at this point in the history
…gs. (#391)

Motivation:

We do not care about the openssl manpages so there is no need to install them during the build.

Modifications:

Use make install_sw which will skip manpage installation.

Result:

Faster build
  • Loading branch information
normanmaurer committed Sep 18, 2018
1 parent 5c73a56 commit e75534b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions openssl-static/pom.xml
Expand Up @@ -251,7 +251,8 @@
</exec>
<exec executable="make" failonerror="true" dir="${opensslBuildDir}" resolveexecutable="true" />
<exec executable="make" failonerror="true" dir="${opensslBuildDir}" resolveexecutable="true">
<arg value="install" />
<!-- Don't install manpages to make things as fast a possible -->
<arg value="install_sw" />
</exec>
</else>
</if>
Expand Down Expand Up @@ -321,7 +322,8 @@
</exec>
<exec executable="make" failonerror="true" dir="${opensslBuildDir}" resolveexecutable="true" />
<exec executable="make" failonerror="true" dir="${opensslBuildDir}" resolveexecutable="true">
<arg value="install" />
<!-- Don't install manpages to make things as fast a possible -->
<arg value="install_sw" />
</exec>
</else>
</if>
Expand Down

0 comments on commit e75534b

Please sign in to comment.