diff options
author | slakmagik <slakmagik@gmail.com> | 2011-03-12 21:49:26 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 17:44:13 -0500 |
commit | ce8ac4989768107c52ed58636e42c187b780b0d3 (patch) | |
tree | d23c51d21fcd23e20d37075aec5933a2aa58ccbd | |
parent | 059e84ac21b5b22efc9a02370f43193e4df5f279 (diff) | |
download | slackbuilds-ce8ac4989768107c52ed58636e42c187b780b0d3.tar.gz |
system/rox-filer: don't leave empty .new files
The doinst.sh was calling config() and then preserve_perms() (which
calls config() again) which would cat nothing (file already removed in
config()) to $NEW.incoming, and move that to $NEW, which the second call
to config() would leave for the admin to consider.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | system/rox-filer/doinst.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/system/rox-filer/doinst.sh b/system/rox-filer/doinst.sh index 3f20c43735..cae55bacdd 100644 --- a/system/rox-filer/doinst.sh +++ b/system/rox-filer/doinst.sh @@ -33,8 +33,6 @@ fi config etc/rox/xdg/rox.sourceforge.net/MIME-types/application_postscript.new config etc/rox/xdg/rox.sourceforge.net/MIME-types/text.new config etc/rox/xdg/rox.sourceforge.net/MIME-types/text_html.new -config etc/profile.d/rox-filer.sh.new -config etc/profile.d/rox-filer.csh.new preserve_perms etc/profile.d/rox-filer.sh.new preserve_perms etc/profile.d/rox-filer.csh.new |