summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authoreyck <eyck@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-25 19:40:04 +0000
committereyck <eyck@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-25 19:40:04 +0000
commit35837598b8cf2683e23be567c8892ad7a9d72a3e (patch)
treeec8920f3f8ab3a136a4b1fd132ae9037eafde9bc /debian
parenta8c79a7c3006f39b5d1bd12a9bd8b43451a70daa (diff)
downloadmpv-35837598b8cf2683e23be567c8892ad7a9d72a3e.tar.bz2
mpv-35837598b8cf2683e23be567c8892ad7a9d72a3e.tar.xz
man goes to /usr/share
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1692 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'debian')
-rw-r--r--debian/dirs2
-rwxr-xr-xdebian/postinst6
2 files changed, 2 insertions, 6 deletions
diff --git a/debian/dirs b/debian/dirs
index b7db63acb6..8afe5eca20 100644
--- a/debian/dirs
+++ b/debian/dirs
@@ -1,3 +1,3 @@
usr/bin
usr/sbin
-usr/man/man1/
+usr/share/man/man1/
diff --git a/debian/postinst b/debian/postinst
index b3c182b26c..bb9f201bfd 100755
--- a/debian/postinst
+++ b/debian/postinst
@@ -13,8 +13,6 @@ my $didupgrade = 0;
dealwithupgrades();
-# We add lo0 right now, useful in case we exit anyway.
-
my $mcfg = new ConfHelper('mplayer', "/etc/mplayer.conf");
$mcfg->setconfarea("
#MPlayer config file generated by .deb package.
@@ -27,13 +25,11 @@ $mcfg->setconfarea("
debug("Configuring video output driver...");
my $dcarea = <<"EOF";
-# MPlayer config file,
-
# MPlayer video output driver, configured by mplayer.deb
EOF
$dcarea .= "vo=" . scalar(get("mplayer/voutput"));
-$dcarea .= "\n";
+ $dcarea .= "\n";
$mcfg->setconfarea($dcarea);