From 53525883f7f6b31b00de6b571f404b57a7063d8e Mon Sep 17 00:00:00 2001
From: P. J. McDermott <pjm@nac.net>
Date: Sat, 27 Apr 2013 12:14:20 -0400
Subject: build: Look for ld.so link in /usr/lib/<target>.

It's a development file, not a critical system file.
---
(limited to 'build')

diff --git a/build b/build
index b8088aa..b196741 100755
--- a/build
+++ b/build
@@ -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 = \
--
cgit v0.9.1