Skip to content

Commit

Permalink
fix unix stdlib install location after nim-lang#21328
Browse files Browse the repository at this point in the history
  • Loading branch information
metagn committed Nov 20, 2024
1 parent e28d2f4 commit a440a0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/niminst/install.nimf
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ if [ $# -eq 1 ] ; then
"/usr/bin")
bindir=$1
configdir="/etc/?proj"
libdir="/usr/lib/?proj"
libdir="/usr/lib/?proj/lib"
docdir="/usr/share/?proj/doc"
datadir="/usr/share/?proj/data"
nimbleDir="/opt/nimble/pkgs/?c.nimblePkgName-?c.version"
;;
"/usr/local/bin")
bindir=$1
configdir="/etc/?proj"
libdir="/usr/local/lib/?proj"
libdir="/usr/local/lib/?proj/lib"
docdir="/usr/local/share/?proj/doc"
datadir="/usr/local/share/?proj/data"
nimbleDir="/opt/nimble/pkgs/?c.nimblePkgName-?c.version"
Expand Down

0 comments on commit a440a0d

Please sign in to comment.