mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
10 lines
111 B
Bash
10 lines
111 B
Bash
#!/bin/sh
|
|
while test $# -gt 0; do
|
|
case $1 in
|
|
--libs)
|
|
echo "-lfribidi"
|
|
;;
|
|
esac
|
|
shift
|
|
done
|