From: Torben Hohn Date: Tue, 28 Sep 2010 13:20:03 +0000 (+0200) Subject: try to fix some fedora issues X-Git-Url: https://repo.or.cz/w/libflashsupport-jack.git/commitdiff_plain/69f152296106890e244b2c1237bbc0db61cbb560 try to fix some fedora issues --- 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