blob: 36c4827fd55c01b3f2d46b419d44883d61d081b4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# get version.nsi definitions
. autodefs/defs.sh
# Get PKCS11-helper libraries
if [ -d "$GENOUT_PREBUILT" ] && ! [ -d "$GENOUT" ]; then
echo LOADING prebuilt binaries from $GENOUT_PREBUILT
cp -a $GENOUT_PREBUILT $GENOUT
fi
|