Import buildroot 2016.02.01
This commit is contained in:
19
firmware/buildroot/package/postgresql/pg_config
Normal file
19
firmware/buildroot/package/postgresql/pg_config
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Minimal pg_config implementation as replacement for the native pg_config application
|
||||
# Only implements --includedir and --libdir
|
||||
#
|
||||
|
||||
prefix=/usr
|
||||
|
||||
case "$1" in
|
||||
--includedir)
|
||||
echo "$prefix/include"
|
||||
;;
|
||||
--libdir)
|
||||
echo "$prefix/lib"
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {--includedir|--libdir}"
|
||||
esac
|
||||
Reference in New Issue
Block a user