diff options
author | Guy Harris <gharris@sonic.net> | 2022-07-12 01:44:21 -0700 |
---|---|---|
committer | Guy Harris <gharris@sonic.net> | 2022-07-12 01:44:21 -0700 |
commit | 18d649e4fc8a651bd44f9a7427f92d56f31e71c5 (patch) | |
tree | 1c4f933459f5645906bfaaedc8e116420d1c2087 /configure.ac | |
parent | 0e0dceba0c29e6ef777d2f5302bab2a01d835ab8 (diff) |
configure: fix string without closing quote.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7521614b..c6c96c16 100644 --- a/configure.ac +++ b/configure.ac @@ -786,7 +786,7 @@ solaris*) # /usr/lib/amd64/pkgconfig. # PKG_CONFIG_PATH=/usr/lib/amd64/pkgconfig - elif test ! -z `echo "$PKG_CONFIG_PATH" | grep "/usr/lib/pkgconfig`; then + elif test ! -z `echo "$PKG_CONFIG_PATH" | grep "/usr/lib/pkgconfig"`; then # # It contains /usr/lib/pkgconfig. Prepend # /usr/lib/amd64/pkgconfig to /usr/lib/pkgconfig. |