From f98cb2926767a4045a976b5f9b46d8b6d03a37ff Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 21 Jul 2024 02:23:17 +0000 Subject: slibtoolize: compatibility: install (copy or symlink) a no-op ar-lib as needed. --- aux/ar-lib | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 aux/ar-lib (limited to 'aux/ar-lib') diff --git a/aux/ar-lib b/aux/ar-lib new file mode 100755 index 0000000..3ef4a41 --- /dev/null +++ b/aux/ar-lib @@ -0,0 +1,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 -- cgit v1.2.3