diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2009-01-13 14:34:45 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2009-01-13 14:34:45 +0000 |
commit | ee9798b0ddaf062b80c7ac9c5f7adc8bf7f370d8 (patch) | |
tree | babc8ddd77fea9c1eb1554cdaf69b3661f586ca9 /net/www/mozplugger/mozplugger.SlackBuild | |
parent | 473388597803932cdefb6154e056f2a458200758 (diff) | |
download | slackbuilds-ee9798b0ddaf062b80c7ac9c5f7adc8bf7f370d8.tar.gz slackbuilds-ee9798b0ddaf062b80c7ac9c5f7adc8bf7f370d8.tar.bz2 |
jhead: adding patch to fix GLSA 200901-02
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@2077 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'net/www/mozplugger/mozplugger.SlackBuild')
-rw-r--r-- | net/www/mozplugger/mozplugger.SlackBuild | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/net/www/mozplugger/mozplugger.SlackBuild b/net/www/mozplugger/mozplugger.SlackBuild index 209aa7d8..fc1b4e00 100644 --- a/net/www/mozplugger/mozplugger.SlackBuild +++ b/net/www/mozplugger/mozplugger.SlackBuild @@ -162,19 +162,6 @@ make install root=$PKG || exit $ERROR_INSTALL xargs strip --strip-unneeded 2> /dev/null ) -# Copy config files -mkdir -p $PKG/etc -for conf in mozpluggerrc; do - mkdir -p $PKG/etc/`dirname $conf` - if [ -e "$CWD/conf/$conf" ]; then - cp -a $CWD/conf/$conf $PKG/etc/$conf - elif [ -e "$CWD/$conf" ]; then - cp -a $CWD/$conf $PKG/etc/$conf - elif [ -e "$conf" ]; then - cp -a $conf $PKG/etc/$conf - fi -done - # Install documentation DOCS="COPYING ChangeLog README" mkdir -p "$PKG/usr/doc/$PKG_NAME-$PKG_VERSION" || exit $ERROR_MKDIR @@ -209,7 +196,7 @@ mozplugger: EODESC # Move config files to .new to avoid overwriting any system config -for config_file in mozpluggerrc; do +for config_file in etc/mozpluggerrc; do mv $PKG/$config_file $PKG/$config_file.new done |