From 27b73b067d2a4c645d84e9a6aac4d17cf706ef06 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 3 Sep 2013 17:25:33 +0200 Subject: [PATCH] Output to stdout, for consistency with the other outputs --- Scripts/scripts/cgal_create_cmake_script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/scripts/cgal_create_cmake_script b/Scripts/scripts/cgal_create_cmake_script index d4733330c78..4e2f124afdf 100755 --- a/Scripts/scripts/cgal_create_cmake_script +++ b/Scripts/scripts/cgal_create_cmake_script @@ -238,5 +238,5 @@ if [ -f ${OUTPUTFILE} ] ; then echo "moving $OUTPUTFILE to ${OUTPUTFILE}.bak ..." mv -f $OUTPUTFILE ${OUTPUTFILE}.bak fi -create_cmake_script 3>&2 > $OUTPUTFILE +create_cmake_script 3>&1 > $OUTPUTFILE echo "created $OUTPUTFILE in $PWD ..."