[vlc-commits] configure: fix inverted logic about Growl

Jean-Baptiste Kempf git at videolan.org
Wed Mar 22 20:01:09 CET 2017


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Mar 22 20:00:54 2017 +0100| [e57867acb06ed548b360c607d3946c0a20572c3f] | committer: Jean-Baptiste Kempf

configure: fix inverted logic about Growl

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e57867acb06ed548b360c607d3946c0a20572c3f
---

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 71f19c4..3436f5a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4071,7 +4071,7 @@ AC_ARG_ENABLE(osx_notifications,
   [  --enable-osx-notifications          osx notification plugin (default disabled)],,
   [enable_osx_notifications=no])
 AS_IF([test "${enable_osx_notifications}" != "no"], [
-  if test ! -d ${CONTRIB_DIR}/Growl.framework -a ! -d ${CONTRIB_DIR}/Frameworks/Growl.framework
+  if test -d ${CONTRIB_DIR}/Growl.framework -o -d ${CONTRIB_DIR}/Frameworks/Growl.framework
   then
       VLC_ADD_PLUGIN([osx_notifications])
       VLC_ADD_LIBS([osx_notifications], [-Wl,-framework,Growl,-framework,Foundation])



More information about the vlc-commits mailing list