diff options
author | davidovski <david@davidovski.xyz> | 2022-01-19 21:18:46 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-19 21:18:46 +0000 |
commit | 9e3881d63d385deb8f6b1f8718eaa1e8b633dd58 (patch) | |
tree | ca36583a95f46c1d95d8cced5e0880e92ad2be65 /repo | |
parent | 1565ae7330d4e2292570958717cb0983cc3a0abc (diff) |
fixed issue where binutils would build to root
Diffstat (limited to 'repo')
-rw-r--r-- | repo/system/binutils.xibuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repo/system/binutils.xibuild b/repo/system/binutils.xibuild index 812081f..bb3db9d 100644 --- a/repo/system/binutils.xibuild +++ b/repo/system/binutils.xibuild @@ -40,6 +40,6 @@ package() { make -j1 DESTDIR=$PKG_DEST -j1 install cp ../include/libiberty.h $PKG_DEST/usr/include rm -fv $PKG_DEST/usr/lib/lib{bfd,ctf,ctf-nobfd,opcodes}.a - ln -sv ld.gold /usr/bin/ld + ln -sv ld.gold $PKG_DEST/usr/bin/ld } |