diff options
Diffstat (limited to 'testing/libnghttp2/build')
-rwxr-xr-x | testing/libnghttp2/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/libnghttp2/build b/testing/libnghttp2/build new file mode 100755 index 00000000..a1bc15c9 --- /dev/null +++ b/testing/libnghttp2/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --enable-lib-only + +make +make DESTDIR="$1" install + +# Even when only installing libraries, the build system installs manual pages +# and documentation for the utilities. +rm -r "$1/usr/share" |