repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
package/python-simplejson: bump version to 3.8.2
[buildroot-gz.git]
/
package
/
postgresql
/
pg_config
blob
85c0e63ddb2357afd3969b4a86812155524610af
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