fix use of header

This commit is contained in:
John Cupitt 2014-07-01 14:51:16 +01:00
parent 8c82ffb865
commit 93d8433270
4 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,6 @@
30/6/14 started 7.40.3
- fix interlaced thumbnails in vipsthumbnail, thanks lovell
- fix use of "header" in benchmark/, thanks David
25/6/14 started 7.40.2
- dzsave write to zip stops at 4gb, thanks bgilbert

View File

@ -21,8 +21,8 @@ if [ $? != 0 ]; then
echo "build of test image failed -- out of disc space?"
exit 1
fi
echo -n "test image is" `header -f width temp.v`
echo " by" `header -f height temp.v` "pixels"
echo -n "test image is" `vipsheader -f width temp.v`
echo " by" `vipsheader -f height temp.v` "pixels"
max_cpus=`vips im_concurrency_get`
echo "max cpus = $max_cpus"

View File

@ -21,8 +21,8 @@ if [ $? != 0 ]; then
echo "build of test image failed -- out of disc space?"
exit 1
fi
echo -n "test image is" `header -f width temp.v`
echo " by" `header -f height temp.v` "pixels"
echo -n "test image is" `vipsheader -f width temp.v`
echo " by" `vipsheader -f height temp.v` "pixels"
max_cpus=`vips im_concurrency_get`
echo "max cpus = $max_cpus"

View File

@ -197,7 +197,7 @@ vips_system_build( VipsObject *object )
VIPS_FREE( std_output );
}
vips_error_system( result, class->nickname,
"%s", _( "command failed" ) );
_( "command \"%s\" failed" ), cmd );
return( -1 );
}