Author: bugman
Date: Thu Oct 12 09:36:12 2006
New Revision: 2632

URL: http://svn.gna.org/viewcvs/relax?rev=2632&view=rev
Log:
Fixed a very minor bug in the Scons source packaging target.

The relax version was not being checked because the Depends statement was using 
'package_bin' rather
than 'package_src'.


Modified:
    1.2/sconstruct

Modified: 1.2/sconstruct
URL: 
http://svn.gna.org/viewcvs/relax/1.2/sconstruct?rev=2632&r1=2631&r2=2632&view=diff
==============================================================================
--- 1.2/sconstruct (original)
+++ 1.2/sconstruct Thu Oct 12 09:36:12 2006
@@ -126,7 +126,7 @@
         package_src_env = Environment(BUILDERS={'archive' : 
Builder(action=self.package)},
                                       DIST_FILE=self.SRC_FILE)
         package_src_env.archive(target='package_src', source=None)
-        package_src_env.Depends('package_bin', 'version_check')     # Check 
the program version number first.
+        package_src_env.Depends('package_src', 'version_check')     # Check 
the program version number first.
 
         # Target for creating a GPG signature of the binary distribution file.
         gpg_bin_env = Environment(BUILDERS={'sign' : 
Builder(action=self.gpg_sign)},


_______________________________________________
relax (http://nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to