From c6862647034b9480c2e14ed072b93d394ea89ab8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 1 Sep 2019 16:59:12 +0200 Subject: [PATCH] LibThread: Add missing install.sh script This unbreaks the SDL port build. --- Libraries/LibThread/install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 Libraries/LibThread/install.sh diff --git a/Libraries/LibThread/install.sh b/Libraries/LibThread/install.sh new file mode 100755 index 0000000000..fe723c94e9 --- /dev/null +++ b/Libraries/LibThread/install.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e +SERENITY_ROOT=../../ + +mkdir -p $SERENITY_ROOT/Root/usr/include/LibThread/ +cp *.h $SERENITY_ROOT/Root/usr/include/LibThread/ +cp libthread.a $SERENITY_ROOT/Root/usr/lib/