Overview
Comment: | Updated to deal with dependencies better and specifiy libdir explicitly |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | packages |
Files: | files | file ages | folders |
SHA1: |
17a7fbab32efae58f686510f185aac6e |
User & Date: | rkeene on 2014-11-11 05:37:42 |
Other Links: | branch diff | manifest | tags |
Context
2014-11-12
| ||
07:00 | Updated to not cleanup work directory if build fails and created a function to configure gcc check-in: 7c62241f33 user: rkeene tags: packages | |
2014-11-11
| ||
05:37 | Updated to deal with dependencies better and specifiy libdir explicitly check-in: 17a7fbab32 user: rkeene tags: packages | |
2014-11-06
| ||
18:29 | Fixed header install path check-in: a2946d9090 user: rkeene tags: packages | |
Changes
Modified build from [f1041debf1] to [defad12737].
︙ | |||
80 81 82 83 84 85 86 87 88 89 90 91 92 93 | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | + + + + + + + + | function verifyRequiredPackages() { local pkg pkgdomain pkgversion local pkgdir pkgconfigdir pkgfound for pkg in "${require[@]}"; do pkgdomain='' pkgversion='' pkgchanges=(CFLAGS LDFLAGS PATH PKG_CONFIG_PATH) case "${pkg}" in *:*) pkgchanges=($(echo "${pkg}" | cut -f 2 -d ':')) pkg="$(echo "${pkg}" | cut -f 1 -d ':')" ;; esac case "${pkg}" in */*@*) pkgdomain="$(echo "${pkg}" | cut -f 2 -d '@')" pkgversion="$(echo "${pkg}" | cut -f 2 -d '/' | cut -f 1 -d '@')" pkg="$(echo "${pkg}" | cut -f 1 -d '/')" ;; |
︙ | |||
109 110 111 112 113 114 115 | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | + + + - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + | for pkgdir in "/opt/appfs/${pkgdomain}/${pkg}/platform"/${pkgversion:-*}; do pkgconfigdir="${pkgdir}/lib/pkgconfig" if [ -d "${pkgdir}" ]; then pkgfound='1' fi for pkgchange in "${pkgchanges[@]}"; do case "${pkgchange}" in CFLAGS) |
︙ | |||
162 163 164 165 166 167 168 | 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | - - + - + - + - - + - + | } function postconfigure() { : } function configure() { |
︙ |
Added pkgs/gcc version [ef2bd3b72e].
|