diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-15 23:01:45 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-18 10:11:58 -0400 |
commit | 3f8414df7a533cccd39bf19c0e311975d9ededde (patch) | |
tree | e3845b4009ae095c44a0100d4a9b96971b2541da /sim/configure | |
parent | 162c6aef1f3a96923e75f0b4ef430822d273465c (diff) | |
download | gdb-3f8414df7a533cccd39bf19c0e311975d9ededde.zip gdb-3f8414df7a533cccd39bf19c0e311975d9ededde.tar.gz gdb-3f8414df7a533cccd39bf19c0e311975d9ededde.tar.bz2 |
sim: create a makefile fragment to pass common settings down
As we merge settings from subdirs into the common configure, we
sometimes need to keep the settings working in both dirs. Create
a makefile fragment to pass them down so we don't have to run the
checks twice. For now, the file is empty, but we'll start moving
logic in shortly.
Diffstat (limited to 'sim/configure')
-rwxr-xr-x | sim/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/configure b/sim/configure index 959fa90..74ca8eb 100755 --- a/sim/configure +++ b/sim/configure @@ -6883,7 +6883,7 @@ _ACEOF $as_echo "$sim_trace" >&6; } -ac_config_files="$ac_config_files Makefile" +ac_config_files="$ac_config_files arch-subdir.mk Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -7622,6 +7622,7 @@ do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "arch-subdir.mk") CONFIG_FILES="$CONFIG_FILES arch-subdir.mk" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; |