Explorar el Código

Stop hiding errors when unable to generate symbols

Bryan Drewery hace 11 años
padre
commit
d9e699952a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/generate_defs.sh

+ 1 - 1
src/generate_defs.sh

@@ -44,7 +44,7 @@ for file in ${files}; do
   echo "extern \"C\" {" > $defsFile_post
 
   cd src >/dev/null 2>&1
-  $CXX -E -I. -I.. -I../lib ${INCLUDES} -DHAVE_CONFIG_H ../${file} > $TMPFILE 2> /dev/null
+  $CXX -E -I. -I.. -I../lib ${INCLUDES} -DHAVE_CONFIG_H ../${file} > $TMPFILE
   # Fix wrapped prototypes
   $SED -e :a -e N -e '$!ba' -e 's/,\n/,/g' $TMPFILE > $TMPFILE.sed
   mv $TMPFILE.sed $TMPFILE