We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d81f133 commit 819787bCopy full SHA for 819787b
scripts/utils-wolfprovider.sh
@@ -104,6 +104,13 @@ clean_wolfprov() {
104
if [ -f "Makefile" ]; then
105
make clean >>$LOG_FILE 2>&1
106
fi
107
+ # Clean default_stub build artifacts
108
+ if [ -f "default_stub/Makefile" ]; then
109
+ printf "Cleaning default stub ...\n"
110
+ make -C default_stub clean >>$LOG_FILE 2>&1
111
+ fi
112
+ # Remove root libdefault.la file
113
+ rm -f libdefault.la
114
rm -rf ${WOLFPROV_INSTALL_DIR}
115
116
if [ "$WOLFPROV_DISTCLEAN" -eq "1" ]; then
0 commit comments