frosix-config.in (241B)
1 #!/usr/bin/env bash 2 3 set -eu 4 5 if ! type gnunet-config >/dev/null; then 6 echo "$0 needs gnunet-config to be installed" 7 exit 1 8 fi 9 10 GC=`which gnunet-config` 11 export LD_PRELOAD=${LD_PRELOAD:-}:%libdir%/libfrosixutil.so 12 exec gnunet-config "$@"