[gvfs] build: Fix typo when searching for util.h



commit 76ddb13258a9a62171aeae9625f9386ac75e5401
Author: Iñigo Martínez <inigomartinez gmail com>
Date:   Wed Apr 11 16:56:01 2018 +0200

    build: Fix typo when searching for util.h
    
    There is a typo in the `dependencies` parameter when searching for
    the `util.h` header.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=794365

 meson.build |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/meson.build b/meson.build
index 03ee42a..a1df542 100644
--- a/meson.build
+++ b/meson.build
@@ -70,7 +70,7 @@ config_h.set('HAVE_SOCKETPAIR', have_socketpair,
              description: 'Define if you have the socketpair function.')
 
 util_dep = cc.find_library('util', required: false)
-config_h.set('HAVE_UTIL_H', cc.has_header('util.h', dependendencies: util_dep))
+config_h.set('HAVE_UTIL_H', cc.has_header('util.h', dependencies: util_dep))
 
 have_openpty = cc.has_function('openpty')
 if not have_openpty


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]