changeset 14191:5bb929d8b4f9 stable

maint: ensure edited configure script is executable * autogen.sh: Set mode of edited configure script to 755.
author John W. Eaton <jwe@octave.org>
date Tue, 10 Jan 2012 16:43:31 -0500
parents 053404893d02
children 5d5400bd1f62
files autogen.sh
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/autogen.sh
+++ b/autogen.sh
@@ -48,4 +48,6 @@
 
 echo "replacing all occurrences of g77 with gfortran in configure script..."
 
-sed 's/g77/gfortran/g' configure > configure.t && mv configure.t configure
+sed 's/g77/gfortran/g' configure > configure.t
+mv configure.t configure
+chmod 755 configure