diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-03-08 00:35:03 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-03-13 11:21:13 -0500 |
commit | e7d9022ba8755005cae79207b5f911b1a9cebed4 (patch) | |
tree | 4583661a1178aa6ddbee99ad97d0b3c2e334e06d /sim/common/Make-common.in | |
parent | c6c7769d9dd166c45bd9d422e91ca537752c0382 (diff) | |
download | gdb-e7d9022ba8755005cae79207b5f911b1a9cebed4.zip gdb-e7d9022ba8755005cae79207b5f911b1a9cebed4.tar.gz gdb-e7d9022ba8755005cae79207b5f911b1a9cebed4.tar.bz2 |
sim: rename BUILD_LDFLAGS to LDFLAGS_FOR_BUILD
The rest of the binutils tree renamed this variable many years ago.
Diffstat (limited to 'sim/common/Make-common.in')
-rw-r--r-- | sim/common/Make-common.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 8b35deb..f4a7e8d 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -249,7 +249,7 @@ EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \ LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS) COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) -LINK_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ +LINK_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(LDFLAGS_FOR_BUILD) -o $@ RUNTESTFLAGS = |