~ubuntu-branches/ubuntu/feisty/flac/feisty-security

« back to all changes in this revision

Viewing changes to test/test_libOggFLAC.sh

  • Committer: Bazaar Package Importer
  • Author(s): Tollef Fog Heen
  • Date: 2005-11-10 12:55:33 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051110125533-2fmlml8wnb06r5vg
Tags: 1.1.2-3ubuntu1
* Merge with Debian
  - We did the C++ transition earlier than Debian, so add c2 suffix to
    liboggflac++ and libflac++

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
 
3
3
#  FLAC - Free Lossless Audio Codec
4
 
#  Copyright (C) 2002,2003,2004  Josh Coalson
 
4
#  Copyright (C) 2002,2003,2004,2005  Josh Coalson
5
5
#
6
6
#  This file is part the FLAC project.  FLAC is comprised of several
7
7
#  components distributed under difference licenses.  The codec libraries
23
23
        exit 1
24
24
}
25
25
 
26
 
LD_LIBRARY_PATH=../src/libOggFLAC/.libs../src/libFLAC/.libs:../obj/release/lib:../obj/debug/lib:$LD_LIBRARY_PATH
 
26
if [ x = x"$1" ] ; then 
 
27
        BUILD=debug
 
28
else
 
29
        BUILD="$1"
 
30
fi
 
31
 
 
32
LD_LIBRARY_PATH=../src/libFLAC/.libs:$LD_LIBRARY_PATH
 
33
LD_LIBRARY_PATH=../src/libOggFLAC/.libs:$LD_LIBRARY_PATH
 
34
LD_LIBRARY_PATH=../src/share/grabbag/.libs:$LD_LIBRARY_PATH
 
35
LD_LIBRARY_PATH=../src/share/replaygain_analysis/.libs:$LD_LIBRARY_PATH
 
36
LD_LIBRARY_PATH=../obj/$BUILD/lib:$LD_LIBRARY_PATH
27
37
export LD_LIBRARY_PATH
28
 
PATH=../src/test_libOggFLAC:../obj/release/bin:../obj/debug/bin:$PATH
29
 
export PATH
 
38
PATH=../src/test_libOggFLAC:$PATH
 
39
PATH=../obj/$BUILD/bin:$PATH
30
40
 
31
41
run_test_libOggFLAC ()
32
42
{