comparison arogue5/configure.ac @ 278:c222f9d56776

Remove an extra bracket from some Autoconf macros.
author John "Elwin" Edwards
date Sun, 10 Sep 2017 17:30:13 -0400
parents 5238b835d661
children 6376b514a30b
comparison
equal deleted inserted replaced
275:aa0eefcd7df6 278:c222f9d56776
31 31
32 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="arogue5"] ) 32 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="arogue5"] )
33 PROGRAM=$progname 33 PROGRAM=$progname
34 AC_SUBST(PROGRAM) 34 AC_SUBST(PROGRAM)
35 35
36 AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@])],[],[]) 36 AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@]),[],[])
37 AC_MSG_CHECKING([if using setgid execute bit]) 37 AC_MSG_CHECKING([if using setgid execute bit])
38 if test "x$enable_setgid" = "xno" ; then 38 if test "x$enable_setgid" = "xno" ; then
39 GROUPOWNER= 39 GROUPOWNER=
40 elif test "x$enable_setgid" = "xyes" ; then 40 elif test "x$enable_setgid" = "xyes" ; then
41 GROUPOWNER=games 41 GROUPOWNER=games