Skip to content

Commit

Permalink
fix for install_dependencies.sh linux32
Browse files Browse the repository at this point in the history
  • Loading branch information
arturoc committed Dec 27, 2009
1 parent 88a3d0b commit fdcc59a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/linux/debian/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libavcodec-dev libavformat-dev libavutil-dev libswscale-dev freeglut3-dev libasound2-dev libxmu-dev libxxf86vm-dev g++ libgl1-mesa-dev libglu1-mesa-dev libraw1394-dev libudev-dev
ARCH = $(uname -m)
ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then
LIBSPATH=linux64
else
Expand Down
2 changes: 1 addition & 1 deletion scripts/linux/fedora/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stabl

yum install ffmpeg-devel libtheora-devel libvorbis-devel

ARCH = $(uname -m)
ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then
LIBSPATH=linux64
else
Expand Down
2 changes: 1 addition & 1 deletion scripts/linux/ubuntu/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apt-get update
apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libavcodec-dev libavformat-dev libavutil-dev libswscale-dev freeglut3-dev libasound2-dev libxmu-dev libxxf86vm-dev g++ libgl1-mesa-dev libglu1-mesa-dev libraw1394-dev libudev-dev
ARCH = $(uname -m)
ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then
LIBSPATH=linux64
else
Expand Down

0 comments on commit fdcc59a

Please sign in to comment.