#!/bin/sh #------------------------------------------------------------------------------ # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | # \\ / A nd | www.openfoam.com # \\/ M anipulation | #------------------------------------------------------------------------------ # Copyright (C) 2017-2021 OpenCFD Ltd. #------------------------------------------------------------------------------ # License # This file is part of OpenFOAM, distributed under GPL-3.0-or-later. # # Script # etc/pkgconfigPrefix # # Description # Set the prefix= entry for pkgconfig files to account for a new location. # # The specified directory can be any of the following: # - base-dir # - base-dir/bin # - base-dir/lib # - base-dir/lib64 # - base-dir/lib/pkgconfig # - base-dir/lib64/pkgconfig # # This allows this type of shell command # # etc/pkgconfigPrefix $(find platforms -name pkgconfig -type d) # # ---------------------------------------------- # NO USER-CONFIGURABLE SETTINGS WITHIN THIS FILE #------------------------------------------------------------------------------ # Run from third-party directory only wmakeCheckPwd "$WM_THIRD_PARTY_DIR" 2>/dev/null || { echo "Error (${0##*/}) : current directory is not \$WM_THIRD_PARTY_DIR" echo " Check your OpenFOAM environment and installation" exit 1 } . "${WM_THIRD_PARTY_DIR:?}"/etc/tools/ThirdPartyFunctions #------------------------------------------------------------------------------ printHelp() { cat<