diff options
author | davidovski <david@davidovski.xyz> | 2022-02-02 23:06:47 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-02 23:06:47 +0000 |
commit | 5f6bd1078b20823e7382ade77e34d65e9c365772 (patch) | |
tree | 1097f55cf8af25525927fa9107edf8bd7e988ad7 /repo/devel | |
parent | cef8b1f4e5926f94c999dbf370702c4952353175 (diff) |
made rust compile correctly for js78 to work
Diffstat (limited to 'repo/devel')
-rw-r--r-- | repo/devel/rustc.xibuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/repo/devel/rustc.xibuild b/repo/devel/rustc.xibuild index f6d9bc3..97f6b3f 100644 --- a/repo/devel/rustc.xibuild +++ b/repo/devel/rustc.xibuild @@ -33,10 +33,10 @@ extended = true [install] # Adjust the prefix for the desired destination #prefix = "/usr" -prefix = "/opt/rustc-1.32.0" +prefix = "/opt/rustc-$PKG_VER" # docdir is used even if the full awesome docs are not installed -docdir = "share/doc/rustc-1.32.0" +docdir = "share/doc/rustc-$PKG_VER" [rust] channel = "stable" @@ -72,10 +72,8 @@ pathprepend /opt/rustc/bin PATH # End /etc/profile.d/rustc.sh EOF -} - -postinstall () { -cat >> /etc/ld.so.conf << EOF + mkdir -pv $PKG_DEST/etc/ld.so.conf.d +cat >> $PKG_DEST/etc/ld.so.conf.d/rustc.conf << EOF # Begin rustc addition /opt/rustc/lib @@ -83,5 +81,4 @@ cat >> /etc/ld.so.conf << EOF # End rustc addition EOF -ldconfig } |