mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 03:28:13 +00:00
Libraries: Fix wrong paths to "Root" in the various install.sh scripts.
We were installing libraries into /Libraries/Root, rather than in /Root. This made the ports system behave rather unpredictable, since I had old versions of things in /Root and new versions of things in /Libraries/Root.
This commit is contained in:
parent
c7ea94697e
commit
0ef13e60b0
5 changed files with 39 additions and 24 deletions
|
@ -1,6 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
mkdir -p ../Root/usr/include/sys/
|
||||
mkdir -p ../Root/usr/lib/
|
||||
cp *.h ../Root/usr/include/
|
||||
cp libm.a ../Root/usr/lib/
|
||||
set -e
|
||||
SERENITY_ROOT=../../
|
||||
|
||||
mkdir -p $SERENITY_ROOT/Root/usr/include/sys/
|
||||
mkdir -p $SERENITY_ROOT/Root/usr/lib/
|
||||
cp *.h $SERENITY_ROOT/Root/usr/include/
|
||||
cp libm.a $SERENITY_ROOT/Root/usr/lib/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue