Skip to content
Snippets Groups Projects
Commit dc26ad88 authored by Tristan Maat's avatar Tristan Maat
Browse files

build-module.sh.in: Don't attempt to copy empty sources

parent 14cbb4b3
No related branches found
No related tags found
Loading
Pipeline #
......@@ -23,7 +23,9 @@ fi
mkdir -p '{build_root}'
mkdir -p '{install_root}'
cp -a "$SRCDIR/{name}/." '{build_root}'
if [ -d "$SRCDIR/{name}/" ]; then
cp -a "$SRCDIR/{name}/." '{build_root}'
fi
cd '{build_root}'
export PREFIX='{install_root}'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment