summaryrefslogtreecommitdiffstats
path: root/hosts/rpi2c-armhf-rb/etc/pbuilder/rebuild-hooks/A01_modfiy_src_dir
blob: aed9de3d7a1f5c86b34e09cb4b827caff9c91723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

exit 0

set -e

# exit if we are in the same UTS namespace as init ( != 2nd build )
[ "$(readlink /proc/1/ns/uts)" = "$(readlink /proc/self/ns/uts)" ] && exit 0

cd $BUILDDIR

if [ "$PWD" == "/build" ]; then
	# build path variation disabled, so do nothing
	exit 0
fi

# There should be only one file, the source directory.
src_dir=$(ls | head -n 1)

mv $src_dir 2nd