Overview
| Comment: | Minor clean-up |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
dfe475c7796977a030e0b069579d8350 |
| User & Date: | rkeene on 2011-07-20 00:43:18 |
| Other Links: | manifest | tags |
Context
|
2011-07-22
| ||
| 18:35 | Added UDP package check-in: bc4f6068e4 user: rkeene tags: trunk | |
|
2011-07-20
| ||
| 00:43 | Minor clean-up check-in: dfe475c779 user: rkeene tags: trunk | |
| 00:37 | Fixed minor bug, take 2 check-in: 26aa2157b5 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/build_all.sh from [467d09ee9f] to [f4e58c31b0].
| ︙ | ︙ | |||
229 230 231 232 233 234 235 |
pkginstdir="${instdir}/${dir}"
(
cd "${dir}/out" 2>/dev/null >/dev/null || exit 1
mkdir "${pkginstdir}"
| | | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
pkginstdir="${instdir}/${dir}"
(
cd "${dir}/out" 2>/dev/null >/dev/null || exit 1
mkdir "${pkginstdir}"
cp -r * "${pkginstdir}/" >/dev/null 2>/dev/null
)
done
(
cd __tmp__ || exit 1
tar -cf - *
|
| ︙ | ︙ |