X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=build.sh;h=b238fb881cf5d75e1365ef5963cfd21472ecff63;hb=29a31124f3e7d936ad2ff3ffbf5fdc35d29615dc;hp=87e07c27bdc938694bccfe2b9009bb298879aa03;hpb=a09daa186d351e53ced3c79c832ece4d17e3a51a;p=bootmanager.git diff --git a/build.sh b/build.sh index 87e07c2..b238fb8 100755 --- a/build.sh +++ b/build.sh @@ -73,8 +73,16 @@ if [ -f "$PLC_DEBUG_SSH_KEY_PUB" ] ; then install -D -m 644 "$PLC_DEBUG_SSH_KEY_PUB" $srcdir/source/debug_files/debug_root_ssh_key fi +# Add pypcilib +pypcilib=`mktemp -d "/tmp/.bootmanager.XXXXXX"` +mkdir $pypcilib/source +cp $(rpm -ql pypcilib | grep -v '\.py[co]$') $pypcilib/source + # Embed the uuencoded tarball in the script -tar -cj -C $srcdir source/ | uuencode -m - >> $DEST_SCRIPT +tar -cj -C $srcdir source/ -C $pypcilib source/ | uuencode -m - >> $DEST_SCRIPT + +# Remove temp directory +rm -fr $pypcilib echo '_EOF_' >> $DEST_SCRIPT echo 'cd /tmp/source' >> $DEST_SCRIPT