From b1f187eb48ae9b7e38c4e5bf5742e1959d7d550b Mon Sep 17 00:00:00 2001 From: siretart Date: Wed, 13 Oct 2010 15:02:00 +0000 Subject: [PATCH] TOOLS/binary_codecs.sh: fix obsolete dpkg syntax Use 'dpkg --print-architecture', the option --print-installation-architecture is deprecated. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32484 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/binary_codecs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOOLS/binary_codecs.sh b/TOOLS/binary_codecs.sh index 410bede0f5..79fb0da953 100755 --- a/TOOLS/binary_codecs.sh +++ b/TOOLS/binary_codecs.sh @@ -13,7 +13,7 @@ CODECDIR=/usr/lib/codecs PREFDIR=/var/lib/mplayer/prefs MYSITE='http://people.debian.org/~mennucc1/mplayer' -dpkgarch=$(dpkg --print-installation-architecture) +dpkgarch=$(dpkg --print-architecture) [ -d $PREFDIR ] || mkdir -v $PREFDIR [ -d $CODECDIR ] || mkdir -v $CODECDIR -- 2.11.4.GIT