mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 07:16:20 +00:00
14 lines
218 B
Bash
14 lines
218 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
|
|
|
|
while test $# -gt 0; do
|
|
case $1 in
|
|
--libs)
|
|
echo "-lfribidi"
|
|
;;
|
|
esac
|
|
shift
|
|
done
|