diff options
| author | Cem Keylan <cem@ckyln.com> | 2020-10-04 22:56:36 +0300 | 
|---|---|---|
| committer | Cem Keylan <cem@ckyln.com> | 2020-10-04 22:56:36 +0300 | 
| commit | 7a830f8673ce6656f124127869b5d98dd0a3135a (patch) | |
| tree | d97297b9811e1c87f2ca052d1e6db00b8a93d620 /extra/pciutils | |
| parent | e4eb0de3956bbb9bcc7edd2cf854d9d1ee3d14b0 (diff) | |
| download | repository-7a830f8673ce6656f124127869b5d98dd0a3135a.tar.gz | |
pciutils: proper build for libraries
Diffstat (limited to 'extra/pciutils')
| -rwxr-xr-x | extra/pciutils/build | 10 | ||||
| -rw-r--r-- | extra/pciutils/sources | 3 | 
2 files changed, 9 insertions, 4 deletions
| diff --git a/extra/pciutils/build b/extra/pciutils/build index 24867e82..bc6e5308 100755 --- a/extra/pciutils/build +++ b/extra/pciutils/build @@ -8,9 +8,13 @@ mk() {          PREFIX=/usr \          SBINDIR=/usr/bin \          SHAREDIR=/usr/share/hwdata \ -        LDFLAGS="$LDFLAGS -static" \          "$@"  } -mk -mk DESTDIR="$1" install install-lib + +for shared in yes no; do ( +    cd "$shared" + +    mk SHARED="$shared" +    mk SHARED="$shared" DESTDIR="$1" install install-pcilib +) done diff --git a/extra/pciutils/sources b/extra/pciutils/sources index 5e717716..d098e756 100644 --- a/extra/pciutils/sources +++ b/extra/pciutils/sources @@ -1 +1,2 @@ -https://www.kernel.org/pub/software/utils/pciutils/pciutils-3.7.0.tar.gz +https://www.kernel.org/pub/software/utils/pciutils/pciutils-3.7.0.tar.gz yes +https://www.kernel.org/pub/software/utils/pciutils/pciutils-3.7.0.tar.gz no | 
