90536dbab3
Add a new opensuse-minimal element to build small and highly configurable openSUSE based images using the zypper-minimal element as the main building mechanism Change-Id: Iebfc4ad4aff763e511b093f1607b55851ccbddcb
15 lines
272 B
Bash
Executable File
15 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# Setup ccache symlinks, as openSUSE's ccache package doesn't
|
|
# include them.
|
|
mkdir -p /usr/lib/ccache
|
|
for tool in cc gcc; do
|
|
ln -s /usr/bin/ccache /usr/lib/ccache/$tool
|
|
done
|