Index: sage-push
===================================================================
--- sage-push	(revision 1483)
+++ sage-push	(revision 2189)
@@ -4,3 +4,3 @@
 hg diff
 hg commit
-# hg push -f ssh://was@sage.math.washington.edu/www/sage/hg/sage-main
+hg push -f ssh://was@sage.math.washington.edu/www/sage/hg/sage-main
Index: sage/gsl/dft.py
===================================================================
--- sage/gsl/dft.py	(revision 2165)
+++ sage/gsl/dft.py	(revision 2191)
@@ -651,8 +651,9 @@
             sage: A = [RR(1) for i in J]
             sage: s = IndexedSequence(A,J)
-            sage: t = s.dwt(); t
+            sage: t = s.dwt()
+            sage: t            # random arch dependent output
             Indexed sequence: [2.82842712474999, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000]
                 indexed by [0, 1, 2, 3, 4, 5, 6, 7]            
-            sage: t.idwt()
+            sage: t.idwt()                  # random arch dependent output
             Indexed sequence: [1.00000000000000, 1.00000000000000, 1.00000000000000, 1.00000000000000, 1.00000000000000, 1.00000000000000, 1.00000000000000, 1.00000000000000]
                 indexed by [0, 1, 2, 3, 4, 5, 6, 7]            
@@ -662,5 +663,6 @@
             sage: A = [RR(1) for i in J]
             sage: s = IndexedSequence(A,J)
-            sage: t = s.dwt("bspline", 103); t
+            sage: t = s.dwt("bspline", 103)
+            sage: t   # random arch dependent output
             Indexed sequence: [4.00000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000, 0.000000000000000]
                 indexed by [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
Index: spkg-install
===================================================================
--- spkg-install	(revision 1646)
+++ spkg-install	(revision 2189)
@@ -58,6 +58,12 @@
 cp -pr * .hg* "$DEVEL/sage-main/"
 
+# for backward compatibility
+# (going from sage-1.4 to sage-1.5)
+if [ -f sage/ext/interrupt.h ]; then
+    rm -f */*/interrupt.h */*/*/interrupt.h
+fi
 
-sage -b main
+# touch and build everything
+sage -ba main
 
 if [ $? -ne 0 ]; then
