Made releng/auto_cxx ready for FreeBSD (with bash or "bash" linked to /bin/sh)

This commit is contained in:
Thomas Schmitt 2011-08-09 17:25:39 +00:00
parent 5d1e5d423c
commit 976a2483cd
1 changed files with 2 additions and 2 deletions

View File

@ -50,12 +50,12 @@ fi
# process sample code tests
# if test -f "${SAMPLE_CODE_DIR}"/*.cpp; then
for SMPL in `ls "${SAMPLE_CODE_DIR}"/*.cpp`; do
CMD_CPL="${CC} -I../ -L ../libisoburn/.libs/ -lisoburn -o ${SMPL}.obj ${SMPL}"
CMD_CPL="${CC} -I../ -L ../libisoburn/.libs/ ${CFLAGS} -lisoburn -o ${SMPL}.obj ${SMPL}"
printf "${SELF}: ${CMD_CPL}\n"
set +e
${CMD_CPL}
RET_CPL="$?"
if [ ${RET_CPL} == 0 -a -f ${SMPL}.obj ]; then
if [ ${RET_CPL} = 0 -a -f ${SMPL}.obj ]; then
mv ${SMPL}.obj ${GEN_DATA_DIR}
else
printf "\nFAIL : ${SELF}: Compilation of ${SMPL}\n"