Codebase list tlsh / e55033d
Replace use of deprecated $ADTTMP with $AUTOPKGTEST_TMP. Changes-By: lintian-brush Fixes: lintian: uses-deprecated-adttmp See-also: https://lintian.debian.org/tags/uses-deprecated-adttmp.html Debian Janitor 2 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
11
22 set -e
33
4 [ "$ADTTMP" ] || { echo "ADTTMP not set" >&2; exit 1; }
4 [ "$AUTOPKGTEST_TMP" ] || { echo "AUTOPKGTEST_TMP not set" >&2; exit 1; }
55
6 cd "$ADTTMP"
6 cd "$AUTOPKGTEST_TMP"
77
88 cat <<EOF > tlshtest.cxx
99 #include <iostream>