b22d7d764d
I had meant for this to be in the other PR#968. I originally did both `make` and `make install` there, but now it only does `make install`, so let's just rename it to make that more obvious. Closes: #953 Approved by: cgwalters
36 lines
1.1 KiB
Bash
Executable File
36 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# This is just a small wrapper for `make install`, but with the added logic to
|
|
# pull in ostree packages from the build container. We always assume development
|
|
# and testing is against git master ostree and that the build container is
|
|
# tracking e.g. CAHC or FAHC (see HACKING.md for more details).
|
|
|
|
DESTDIR=${topsrcdir}/insttree
|
|
|
|
rm -rf ${DESTDIR}
|
|
mkdir -p ${DESTDIR}
|
|
|
|
ostree --version
|
|
for pkg in ostree{,-libs,-grub2}; do
|
|
|
|
rpm -q $pkg
|
|
|
|
# We do not have perms to read /etc/grub2 as non-root. In the prebuilt
|
|
# container case, manpages are missing. Ignore that.
|
|
rpm -ql $pkg | grep -vE "^/(etc|usr/share/(doc|man))/" > list.txt
|
|
|
|
# Also chown everything to writable, due to
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=517575
|
|
chmod -R u+w ${DESTDIR}/
|
|
|
|
# Note we cant use --ignore-missing-args here since it was added in
|
|
# rsync 3.1.0, but CentOS7 only has rsync 3.0.9. Anyway, we expect
|
|
# everything in list.txt to be present (otherwise, tweak grep above).
|
|
rsync -l --files-from=list.txt / ${DESTDIR}/
|
|
|
|
rm -f list.txt
|
|
done
|
|
|
|
make install DESTDIR=${DESTDIR}
|