jhbuild r2795 - in trunk: . jhbuild/commands



Author: fpeters
Date: Mon Apr 13 08:13:34 2009
New Revision: 2795
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2795&view=rev

Log:
* jhbuild/commands/sanitycheck.py: print prefix/checkoutroot if they
are not existing or writable.  (closes: #572305)



Modified:
   trunk/ChangeLog
   trunk/jhbuild/commands/sanitycheck.py

Modified: trunk/jhbuild/commands/sanitycheck.py
==============================================================================
--- trunk/jhbuild/commands/sanitycheck.py	(original)
+++ trunk/jhbuild/commands/sanitycheck.py	Mon Apr 13 08:13:34 2009
@@ -58,10 +58,10 @@
         # check whether the checkout root and install prefix are writable
         if not (os.path.isdir(config.checkoutroot) and
                 os.access(config.checkoutroot, os.R_OK|os.W_OK|os.X_OK)):
-            uprint(_('checkout root is not writable'))
+            uprint(_('checkout root (%s) is not writable') % config.checkoutroot)
         if not (os.path.isdir(config.prefix) and
                 os.access(config.prefix, os.R_OK|os.W_OK|os.X_OK)):
-            uprint(_('install prefix is not writable'))
+            uprint(_('install prefix (%s) is not writable') % config.prefix)
 
         # check whether various tools are installed
         if not check_version(['libtoolize', '--version'],



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]