116
117
118
119
120
121
122
123
124
125
126
127
|
break
done
# Create VFS-insert
cp -r "${INSTDIR}/lib" "${OUTDIR}" || exit 1
find "${OUTDIR}" -name '*.a' -type f | grep -v '/libtcc1\.a$' | xargs rm -f
exit 0
) || exit 1
exit 0
|
>
>
>
|
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
break
done
# Create VFS-insert
cp -r "${INSTDIR}/lib" "${OUTDIR}" || exit 1
find "${OUTDIR}" -name '*.a' -type f | grep -v '/libtcc1\.a$' | xargs rm -f
# Tell Kitsh not to try to link against "libtcc1.a"
echo "/libtcc1\.a" > "${INSTDIR}/kitcreator-nolibs"
exit 0
) || exit 1
exit 0
|