From 69f152296106890e244b2c1237bbc0db61cbb560 Mon Sep 17 00:00:00 2001 From: Torben Hohn Date: Tue, 28 Sep 2010 15:20:03 +0200 Subject: [PATCH] try to fix some fedora issues --- bootstrap.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index f8e4e82..f5a8327 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,13 +1,13 @@ #!/bin/bash -# This file is part of libflashsupport-pulse. +# This file is part of libflashsupport-jack. # -# libflashsupport-pulse is free software; you can redistribute it +# libflashsupport-jack is free software; you can redistribute it # and/or modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either version # 2 of the License, or (at your option) any later version. # -# libflashsupport-pulse is distributed in the hope that it will be +# libflashsupport-jack is distributed in the hope that it will be # useful, but WITHOUT ANY WARRANTY; without even the implied warranty # of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. @@ -57,7 +57,11 @@ else run_versioned automake "$VERSION" --copy --foreign --add-missing if test "x$NOCONFIGURE" = "x"; then - CFLAGS="-g -O0" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var "$@" + if [ -f /etc/fedora-release -a `uname -a` = x86_64 ] ; then + CFLAGS="-g -O0" ./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc --localstatedir=/var "$@" + else + CFLAGS="-g -O0" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var "$@" + fi make clean fi fi -- 2.11.4.GIT