85c0e63ddb2357afd3969b4a86812155524610af
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / postgresql / pg_config
1 #!/bin/sh
2
3 #
4 # Minimal pg_config implementation as replacement for the native pg_config application
5 # Only implements --includedir and --libdir
6 #
7
8 prefix=/usr
9
10 case "$1" in
11   --includedir)
12         echo "$prefix/include"
13         ;;
14   --libdir)
15         echo "$prefix/lib"
16         ;;
17   *)
18         echo "Usage: $0 {--includedir|--libdir}"
19 esac