Mercurial > hg > early-roguelike
comparison rogue4/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 | 0e99eade579c |
children | 0b3d1b38998f |
comparison
equal
deleted
inserted
replaced
275:aa0eefcd7df6 | 278:c222f9d56776 |
---|---|
38 | 38 |
39 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="rogue4"] ) | 39 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="rogue4"] ) |
40 PROGRAM=$progname | 40 PROGRAM=$progname |
41 AC_SUBST(PROGRAM) | 41 AC_SUBST(PROGRAM) |
42 | 42 |
43 AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@])],[],[]) | 43 AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@]),[],[]) |
44 AC_MSG_CHECKING([if using setgid execute bit]) | 44 AC_MSG_CHECKING([if using setgid execute bit]) |
45 if test "x$enable_setgid" = "xno" ; then | 45 if test "x$enable_setgid" = "xno" ; then |
46 GROUPOWNER= | 46 GROUPOWNER= |
47 elif test "x$enable_setgid" = "xyes" ; then | 47 elif test "x$enable_setgid" = "xyes" ; then |
48 GROUPOWNER=games | 48 GROUPOWNER=games |