diff options
-rwxr-xr-x | build | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,14 +2,14 @@ base_version = $$(printf '%s\n' '$(OPK_SOURCE)' | sed 's/^gcc-//') -# /lib/<target>/ld.so is a symbolic link for use by GCC to find the system's +# /usr/lib/<target>/ld.so is a symbolic link for use by GCC to find the system's # dynamic linker. It should be provided by the development package of any # standard C library. # ProteanOS GCC should build binaries with an ELF INTERP field as follows: # /lib/<target>/<soname> # <soname> is the SONAME of the target's dynamic linker. elf_interp = /lib/$(target)/$(elf_interp_soname) -elf_interp_soname = $$(readelf -d "/lib/$(target)/ld.so" | \ +elf_interp_soname = $$(readelf -d "/usr/lib/$(target)/ld.so" | \ sed -n 's/^.*(SONAME).*\[\([^]]*\)\].*$$/\1/p') common_opts = \ |