comparison admin/build-configs @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000
parents 0f6e6a0405c4
children 695cf19ef79e d7ddb3e565de
comparison
equal deleted inserted replaced
49599:5ade352e8d1c 49600:23a1cea22d13
78 78
79 print "$configure_options, $make_options\n"; 79 print "$configure_options, $make_options\n";
80 unlink "config.cache"; 80 unlink "config.cache";
81 81
82 $rc = system ("$root/configure $configure_options >>$log 2>&1"); 82 $rc = system ("$root/configure $configure_options >>$log 2>&1");
83 if ($rc != 0) 83 if ($rc != 0)
84 { 84 {
85 print "configure failed\n"; 85 print "configure failed\n";
86 exit 1; 86 exit 1;
87 } 87 }
88 88
89 $rc = system ("make-emacs --all $make_options >>$log 2>&1"); 89 $rc = system ("make-emacs --all $make_options >>$log 2>&1");
90 if ($rc != 0) 90 if ($rc != 0)
91 { 91 {
92 print "Make failed\n"; 92 print "Make failed\n";
93 exit 1; 93 exit 1;
94 } 94 }
95 } 95 }