[gjs: 1/3] build: Remove spurious closing bracket



commit 65cf990fb7d1e991e37e96f6ade08a8f3a3a07d2
Author: Olivier Fourdan <ofourdan redhat com>
Date:   Tue Jun 25 09:58:45 2019 +0200

    build: Remove spurious closing bracket
    
    Running the configure script shows an error message:
    
    ```
    ./configure: line 17904: ]: command not found
    ```
    
    This is because of a misplaced closing bracket in configure.ac.
    
    https://gitlab.gnome.org/GNOME/gjs/issues/258

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/configure.ac b/configure.ac
index 6155b611..2cec273d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -187,7 +187,7 @@ AS_IF([test x$enable_profiler != xno], [
           [AC_MSG_ERROR([The profiler is currently only supported on Linux.
 The standard library must support timer_settime() and SIGEV_THREAD_ID.
 Configure with --disable-profiler to skip it on other platforms.])],
-          [enable_profiler=no])])
+          [enable_profiler=no]))
   AS_IF([test x$enable_profiler = xauto],[enable_profiler=yes])
   AC_DEFINE([ENABLE_PROFILER], [test x$enable_profiler = xyes], [Define if the profiler should be built.])
 ])


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