summaryrefslogtreecommitdiff
path: root/rtaudio-config.in
diff options
context:
space:
mode:
authorStephen Sinclair <radarsat1@gmail.com>2013-10-11 17:51:22 +0200
committerStephen Sinclair <radarsat1@gmail.com>2013-10-11 18:57:30 +0200
commitf4cf104223cde14e2070ef1b97f0405ce4efd937 (patch)
treeb6f3585387c00fd62ad40b1f43af59b92946d0e9 /rtaudio-config.in
parentf1dc7619d501ca7c5de745213dd3784de279204c (diff)
Fix rtaudio-config (test uses = for string comparison, not ==), and install it.
Diffstat (limited to 'rtaudio-config.in')
-rw-r--r--rtaudio-config.in6
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"