mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-24 12:58:39 +00:00
* tests/config-flags.pm.in: Add USE_SYSTEM_GLOB.
* tests/config_flags_pm.com [VMS]: Ditto.
This commit is contained in:
parent
9bc5491712
commit
1b976397e5
2 changed files with 13 additions and 11 deletions
|
@ -4,16 +4,17 @@
|
|||
# during the tests.
|
||||
|
||||
%CONFIG_FLAGS = (
|
||||
AM_LDFLAGS => '@AM_LDFLAGS@',
|
||||
AR => '@AR@',
|
||||
CC => '@CC@',
|
||||
CFLAGS => '@CFLAGS@',
|
||||
CPP => '@CPP@',
|
||||
CPPFLAGS => '@CPPFLAGS@',
|
||||
GUILE_CFLAGS => '@GUILE_CFLAGS@',
|
||||
GUILE_LIBS => '@GUILE_LIBS@',
|
||||
LDFLAGS => '@LDFLAGS@',
|
||||
LIBS => '@LIBS@'
|
||||
AM_LDFLAGS => '@AM_LDFLAGS@',
|
||||
AR => '@AR@',
|
||||
CC => '@CC@',
|
||||
CFLAGS => '@CFLAGS@',
|
||||
CPP => '@CPP@',
|
||||
CPPFLAGS => '@CPPFLAGS@',
|
||||
GUILE_CFLAGS => '@GUILE_CFLAGS@',
|
||||
GUILE_LIBS => '@GUILE_LIBS@',
|
||||
LDFLAGS => '@LDFLAGS@',
|
||||
LIBS => '@LIBS@',
|
||||
USE_SYSTEM_GLOB => '@USE_SYSTEM_GLOB@'
|
||||
);
|
||||
|
||||
1;
|
||||
|
|
|
@ -24,7 +24,7 @@ $ open/read cfpm_in config-flags.pm.in
|
|||
$!
|
||||
$ outfile = "sys$disk:[]config-flags.pm"
|
||||
$!
|
||||
$ cflags = "/include=([],[.glob]"
|
||||
$ cflags = "/include=([],[.lib]"
|
||||
$!
|
||||
$ create 'outfile'
|
||||
$ open/append cfpm 'outfile'
|
||||
|
@ -42,6 +42,7 @@ $ if key .eqs. "CC" then value = "CC"
|
|||
$ if key .eqs. "CPP" then value = "CPP"
|
||||
$ if key .eqs. "CFLAGS" then value = cflags
|
||||
$ if key .eqs. "GUILE_CFLAGS" then value = cflags
|
||||
$ if key .eqs. "USE_SYSTEM_GLOB" then value = "no"
|
||||
$ write cfpm part1, value, part2
|
||||
$ goto cfpm_read_loop
|
||||
$ endif
|
||||
|
|
Loading…
Reference in a new issue