diff options
| author | Stephen Sinclair <radarsat1@gmail.com> | 2013-10-11 17:51:22 +0200 |
|---|---|---|
| committer | Stephen Sinclair <radarsat1@gmail.com> | 2013-10-11 18:57:30 +0200 |
| commit | f4cf104223cde14e2070ef1b97f0405ce4efd937 (patch) | |
| tree | b6f3585387c00fd62ad40b1f43af59b92946d0e9 /rtaudio-config.in | |
| parent | f1dc7619d501ca7c5de745213dd3784de279204c (diff) | |
Fix rtaudio-config (test uses = for string comparison, not ==), and install it.
Diffstat (limited to 'rtaudio-config.in')
| -rw-r--r-- | rtaudio-config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rtaudio-config.in b/rtaudio-config.in index 2422b60..e7ff828 100644 --- a/rtaudio-config.in +++ b/rtaudio-config.in @@ -8,11 +8,11 @@ LIBRARY="@LIBS@" CXXFLAGS="@CXXFLAGS@" CPPFLAGS="@CPPFLAGS@" -if (test "x$1" == "x--libs") ; then +if (test "x$1" = "x--libs") ; then echo "$LIBRARY" -elif (test "x$1" == "x--cxxflags") ; then +elif (test "x$1" = "x--cxxflags") ; then echo "$CXXFLAGS" -elif (test "x$1" == "x--cppflags") ; then +elif (test "x$1" = "x--cppflags") ; then echo "$CPPFLAGS" else echo "Unknown option: $1" |
