From: <jh...@us...> - 2010-12-18 01:42:04
|
Revision: 227 http://etch.svn.sourceforge.net/etch/?rev=227&view=rev Author: jheiss Date: 2010-12-18 01:41:58 +0000 (Sat, 18 Dec 2010) Log Message: ----------- Set the postinstall/postremove scripts to be executable when building the Solaris packages. Modified Paths: -------------- trunk/client/Rakefile Modified: trunk/client/Rakefile =================================================================== --- trunk/client/Rakefile 2010-11-29 18:12:42 UTC (rev 226) +++ trunk/client/Rakefile 2010-12-18 01:41:58 UTC (rev 227) @@ -230,8 +230,10 @@ cp('depend', 'solbuild/depend') prototype.puts("i depend=./depend") cp('postinstall.solaris', 'solbuild/postinstall') + chmod(0555, 'solbuild/postinstall') prototype.puts("i postinstall=./postinstall") cp('postremove.solaris', 'solbuild/postremove') + chmod(0555, 'solbuild/postremove') prototype.puts("i postremove=./postremove") # The tail +2 removes the first line, which is the base directory # and doesn't need to be included in the package. @@ -319,8 +321,10 @@ cp('depend', 'solbuild/depend') prototype.puts("i depend=./depend") cp('postinstall.solaris', 'solbuild/postinstall') + chmod(0555, 'solbuild/postinstall') prototype.puts("i postinstall=./postinstall") cp('postremove.solaris', 'solbuild/postremove') + chmod(0555, 'solbuild/postremove') prototype.puts("i postremove=./postremove") # The tail +2 removes the first line, which is the base directory # and doesn't need to be included in the package. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |