blob: fb4e996cbeb3c250b32f9a1239268ad6056c9b99 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#! /bin/bash
# common modules for pbuilder.
function umountproc () {
if [ "$USEPROC" = "yes" ]; then
echo " -> unmounting proc"
umount "$BUILDPLACE/proc"
fi
}
function mountproc () {
if [ "$USEPROC" = "yes" ]; then
echo " -> mounting proc"
mkdir -p $BUILDPLACE/proc
mount -t proc /proc "$BUILDPLACE/proc"
fi
}
function cleanbuildplace () {
if [ -d "$BUILDPLACE" ]; then
echo cleaning the build env
rm -rf "$BUILDPLACE"
fi;
}
#required for some packages to install...
export LANG=C
export LC_ALL=C
|