From 877862304a85436fb56f3b0f8b24c2ba977d6f90 Mon Sep 17 00:00:00 2001 From: George Danchev Date: Sat, 21 Apr 2012 11:09:30 +0000 Subject: [PATCH] when run inside libisoburn, also resolve the headers from ../../libburn and ../../libisofs; when run inside gnu-xorriso all headers are resolved via ../ --- releng/auto_cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releng/auto_cxx b/releng/auto_cxx index c7f8081e..0de7feb7 100755 --- a/releng/auto_cxx +++ b/releng/auto_cxx @@ -50,7 +50,7 @@ fi # process sample code tests for SMPL in `ls "${SAMPLE_CODE_DIR}"/*.cpp`; do # CMD_CPL="${CC} -I../ -L ../libisoburn/.libs/ ${CFLAGS} -lisoburn -o ${SMPL}.obj ${SMPL}" - CMD_CPL="${CC} -c -I../ ${CFLAGS} -o ${SMPL}.obj ${SMPL}" + CMD_CPL="${CC} -c -I../ -I../../libburn -I../../libisofs ${CFLAGS} -o ${SMPL}.obj ${SMPL}" printf "${SELF}: ${CMD_CPL}" set +e ${CMD_CPL}