mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-05-04 15:49:01 +01:00
Add buildroot 2018-02
This commit is contained in:
@@ -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