22 lines
878 B
Bash
22 lines
878 B
Bash
|
|
||
|
if [ "${DOSEMU}" = "Yes" ]; then
|
||
|
if [ "${DOSEMUVER}" = "dosemu2" ]; then
|
||
|
echo "" >> ${DBP_INFO}
|
||
|
echo "DosEmu2 Integration with Mystic" >> ${DBP_INFO}
|
||
|
echo "" >> ${DBP_INFO}
|
||
|
echo "For the correct DosEmu2 integration follow the Mystic Doors doc ${MYSTIC_DIR}/docs/unix.install.txt" >> ${DBP_INFO}
|
||
|
echo "" >> ${DBP_INFO}
|
||
|
echo "==============================================================================================================" >> ${DBP_INFO}
|
||
|
fi
|
||
|
|
||
|
if [ "${DOSEMUVER}" = "dosemu" ]; then
|
||
|
echo "" >> ${DBP_INFO}
|
||
|
echo "DosEmu Integration with Mystic" >> ${DBP_INFO}
|
||
|
echo "" >> ${DBP_INFO}
|
||
|
echo "For the correct DosEmu integration follow the Mystic Doors doc ${MYSTIC_DIR}/docs/unix.install.txt" >> ${DBP_INFO}
|
||
|
echo "" >> ${DBP_INFO}
|
||
|
echo "==============================================================================================================" >> ${DBP_INFO}
|
||
|
fi
|
||
|
|
||
|
fi
|