mirror of https://github.com/getdnsapi/getdns.git
12 lines
438 B
Plaintext
12 lines
438 B
Plaintext
# #-- 260-conversion-functions.test --#
|
|
# source the master var file when it's there
|
|
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
|
|
# use .tpkg.var.test for in test variable passing
|
|
[ -f .tpkg.var.test ] && source .tpkg.var.test
|
|
|
|
(
|
|
BUILDDIR4SED=`echo "${BUILDDIR}/build-stub-only" | sed 's/\//\\\\\//g'`
|
|
sed -e "s/@BUILDDIR@/${BUILDDIR4SED}/g" \
|
|
-e "s/@TPKG_NAME@/${TPKG_NAME}/g" "${TPKG_NAME}.cmake"
|
|
) > CMakeLists.txt
|