aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAlbert Ou <aou@eecs.berkeley.edu>2019-09-26 19:07:30 -0700
committerAlbert Ou <aou@eecs.berkeley.edu>2019-09-26 19:07:30 -0700
commitaa44df5294cb0701c696f3e3c610753ea27ce8f4 (patch)
tree9582734df514c6ea228dc1aa9cd12fd0d1a34994 /Makefile.in
parenta528df4a69b438a031501687ecefde63437b5f39 (diff)
downloadriscv-gnu-toolchain-aa44df5294cb0701c696f3e3c610753ea27ce8f4.zip
riscv-gnu-toolchain-aa44df5294cb0701c696f3e3c610753ea27ce8f4.tar.gz
riscv-gnu-toolchain-aa44df5294cb0701c696f3e3c610753ea27ce8f4.tar.bz2
Fix awk/sed wrapper paths
These wrappers are still necessary on non-GNU platforms; glibc makefile rules invoke `sed' directly with GNU extensions.
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 4f8d549..e78f2ac 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -25,10 +25,10 @@ PATH := $(INSTALL_DIR)/bin:$(PATH)
# gawk/gsed on platforms where these aren't the default), otherwise
# don't override these as the wrappers don't always work.
ifneq (@GSED@,/bin/sed)
- PATH := $(base_dir)/sed:$(PATH)
+ PATH := $(builddir)/scripts/wrapper/sed:$(PATH)
endif
ifneq (@GAWK@,/usr/bin/gawk)
- PATH := $(base_dir)/awk:$(PATH)
+ PATH := $(builddir)/scripts/wrapper/awk:$(PATH)
endif
export PATH AWK SED