Mercurial > hg > early-roguelike
comparison rogue5/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 |
---|---|
41 | 41 |
42 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="rogue5"] ) | 42 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="rogue5"] ) |
43 PROGRAM=$progname | 43 PROGRAM=$progname |
44 AC_SUBST(PROGRAM) | 44 AC_SUBST(PROGRAM) |
45 | 45 |
46 AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@])],[],[]) | 46 AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@]),[],[]) |
47 AC_MSG_CHECKING([if using setgid execute bit]) | 47 AC_MSG_CHECKING([if using setgid execute bit]) |
48 if test "x$enable_setgid" = "xno" ; then | 48 if test "x$enable_setgid" = "xno" ; then |
49 GROUPOWNER= | 49 GROUPOWNER= |
50 elif test "x$enable_setgid" = "xyes" ; then | 50 elif test "x$enable_setgid" = "xyes" ; then |
51 GROUPOWNER=games | 51 GROUPOWNER=games |