mailr15690 - /1.3/scons/distrib.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on April 05, 2012 - 12:39:
Author: bugman
Date: Thu Apr  5 12:39:02 2012
New Revision: 15690

URL: http://svn.gna.org/viewcvs/relax?rev=15690&view=rev
Log:
The DMG image file is now being sent to the parent directory '..' rather than 
the base directory.

This fixes the problem of the DMG file packaging itself into 
relax.app/Contents/Resources, creating
a 120 Mb file rather than a 60 Mb file!!!


Modified:
    1.3/scons/distrib.py

Modified: 1.3/scons/distrib.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/scons/distrib.py?rev=15690&r1=15689&r2=15690&view=diff
==============================================================================
--- 1.3/scons/distrib.py (original)
+++ 1.3/scons/distrib.py Thu Apr  5 12:39:02 2012
@@ -111,7 +111,7 @@
 
             # Create the dmg image.
             print("\n\n# Creating the DMG image.\n\n")
-            cmd = 'hdiutil create -ov -fs HFS+ -volname "relax" -srcfolder 
dist/relax.app %s' % file
+            cmd = 'hdiutil create -ov -fs HFS+ -volname "relax" -srcfolder 
dist/relax.app ../%s' % file
             print("%s\n" % cmd)
             pipe = Popen(cmd, shell=True, stdin=PIPE, close_fds=False)
             waitpid(pipe.pid, 0)




Related Messages


Powered by MHonArc, Updated Thu Apr 05 13:00:01 2012