Overview
Comment: | Fixed issue where libraries for libcap were located in wrong place |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | packages |
Files: | files | file ages | folders |
SHA1: | 3e742f175694337d6e9a43691c2a202c19a2cf19 |
User & Date: | rkeene on 2014-11-12 08:39:09 |
Other Links: | manifest | tags |
Context
2014-11-12
| ||
09:29 | Updated to search in requested headers last rather than first, as if they were system headers check-in: 6fac0b6f10 user: rkeene tags: packages | |
08:39 | Fixed issue where libraries for libcap were located in wrong place check-in: 3e742f1756 user: rkeene tags: packages | |
08:29 | Added libcap package check-in: 464c2fea8f user: rkeene tags: packages | |
Changes
Modified pkgs/libcap from [d39ce82398] to [832b31b155].
7 7 require=(attr) 8 8 9 9 function configure() { 10 10 : 11 11 } 12 12 13 13 function build() { 14 - local dynamiclinker 15 - 16 - dynamiclinker="$(echo " ${LDFLAGS} " | sed 's@^.* -Wl,--dynamic-linker,@@;s@ .*$@@')" 17 - 18 - make prefix="${prefix}" lib="${dynamiclinker}" 14 + make prefix="${prefix}" lib='lib' 19 15 } 20 16 21 17 function install() { 22 - make prefix="${prefix}" lib="${dynamiclinker}" DESTDIR="${destdir}" RAISE_SETFCAP='no' install 18 + make prefix="${prefix}" lib='lib' DESTDIR="${destdir}" RAISE_SETFCAP='no' install 23 19 }