blob: 3ef4a41c058b93bc147d531e1c3f0244d8c3fb54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
#####################################################################
## slibtool: a strong libtool implementation, written in C ##
## Copyright (C) 2016--2024 SysDeer Technologies, LLC ##
## Released under the Standard MIT License; see COPYING.SLIBTOOL. ##
#####################################################################
#####################################################################
## ar-lib: a placeholder script, currently not implemented ##
## ------------------------------------------------------- ##
#####################################################################
set -eu
error_msg()
{
printf '%s\n' "$@" >&2
}
error_not_implemented()
{
error_msg 'ar-lib: this script is a placeholder.'
exit 2
}
error_not_implemented
|