From 9cd136a4fc55ae34b4f5455e2e2270e028fd0bd3 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 3 Jun 2014 11:33:01 +0200 Subject: use a wrapper for install for Darwin --- scripts/install | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/install (limited to 'scripts/install') diff --git a/scripts/install b/scripts/install new file mode 100755 index 000000000..0fe925d0f --- /dev/null +++ b/scripts/install @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +if [ -z "$(which ginstall 2>/dev/null)" ];then + /usr/bin/install "$@" +else + ginstall "$@" +fi + -- cgit v1.2.3