package/python-simplejson: bump version to 3.8.2
[buildroot-gz.git] / package / postgresql / pg_config
blob85c0e63ddb2357afd3969b4a86812155524610af
1 #!/bin/sh
4 # Minimal pg_config implementation as replacement for the native pg_config application
5 # Only implements --includedir and --libdir
8 prefix=/usr
10 case "$1" in
11 --includedir)
12 echo "$prefix/include"
14 --libdir)
15 echo "$prefix/lib"
18 echo "Usage: $0 {--includedir|--libdir}"
19 esac