aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGavin Howard <gavin@yzena.com>2022-09-12 22:04:32 -0600
committerGavin Howard <gavin@yzena.com>2022-09-12 22:40:16 -0600
commit2b65eb21cfc575fdb04a090c687bd102a80cc43c (patch)
tree27d01d5e445c4d7700e68c90f37d0a0eaf77a4d4 /Makefile.in
parent6fabf2b83579c1a4c5d6c2dcc780dac62920de82 (diff)
downloadbc-2b65eb21cfc575fdb04a090c687bd102a80cc43c.tar.gz
Attempt to fix a build bug
This appeared to be caused by c36b91b024e, which says that it is trying to fix an issue on the FreeBSD port. However, half of that commit has already been removed, and when I remove the other half, the port builds fine still. It looks like that commit may have been entirely unnecessary due to later changes, but it broke cross-compiling. This commit removes the rest of that commit. This may not work, but I'm going to try it. Signed-off-by: Gavin Howard <gavin@yzena.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index eb607dca..9f187cbc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -211,8 +211,8 @@ CPPFLAGS6 = $(CPPFLAGS5) -DBC_ENABLE_NLS=$(BC_ENABLE_NLS)
CPPFLAGS7 = $(CPPFLAGS6) -D$(BC_ENABLE_EXTRA_MATH_NAME)=$(BC_ENABLE_EXTRA_MATH)
CPPFLAGS8 = $(CPPFLAGS7) -DBC_ENABLE_HISTORY=$(BC_ENABLE_HISTORY) -DBC_ENABLE_LIBRARY=$(BC_ENABLE_LIBRARY)
CPPFLAGS = $(CPPFLAGS8) -DBC_ENABLE_MEMCHECK=$(BC_ENABLE_MEMCHECK) -DBC_ENABLE_AFL=$(BC_ENABLE_AFL)
-CFLAGS = $(CPPFLAGS) $(BC_DEFS) $(DC_DEFS) %%CPPFLAGS%% %%CFLAGS%% -I$(INCLUDEDIR)
-LDFLAGS = %%LDFLAGS%% -L$(LIBDIR)
+CFLAGS = $(CPPFLAGS) $(BC_DEFS) $(DC_DEFS) %%CPPFLAGS%% %%CFLAGS%%
+LDFLAGS = %%LDFLAGS%%
HOSTCFLAGS = %%HOSTCFLAGS%%