mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
0ef13e60b0
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.
9 lines
180 B
Bash
Executable File
9 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
SERENITY_ROOT=../../
|
|
|
|
mkdir -p $SERENITY_ROOT/Root/usr/include/LibCore/
|
|
cp *.h $SERENITY_ROOT/Root/usr/include/LibCore/
|
|
cp libcore.a $SERENITY_ROOT/Root/usr/lib/
|