svn commit: r197035 - projects/stress2/misc

Peter Holm pho at FreeBSD.org
Wed Sep 9 11:16:08 UTC 2009


Author: pho
Date: Wed Sep  9 11:16:08 2009
New Revision: 197035
URL: http://svn.freebsd.org/changeset/base/197035

Log:
  Use the correct program name when checking to see if mkisofs is installed.

Modified:
  projects/stress2/misc/isofs.sh

Modified: projects/stress2/misc/isofs.sh
==============================================================================
--- projects/stress2/misc/isofs.sh	Wed Sep  9 11:14:03 2009	(r197034)
+++ projects/stress2/misc/isofs.sh	Wed Sep  9 11:16:08 2009	(r197035)
@@ -30,7 +30,7 @@
 
 [ `id -u ` -ne 0 ] && echo "Must not be root!" && exit 1
 
-[ -z "`type isofs 2>/dev/null`" ] && echo "isofs not found" && exit 1
+[ -z "`type mkisofs 2>/dev/null`" ] && echo "mkisofs not found" && exit 1
 
 . ../default.cfg
 


More information about the svn-src-projects mailing list