mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 09:59:54 +00:00
9b331554ab
Let an external script handle printing of installation directories so that printing can be done in a `cleaner' way without tests. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
26 lines
630 B
Bash
26 lines
630 B
Bash
#!/bin/sh
|
|
# @configure_input@
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
bindir=@bindir@
|
|
pkgconfigdir=@pkgconfigdir@
|
|
datadir=@datadir@
|
|
datarootdir=@datarootdir@
|
|
docdir=@docdir@
|
|
htmldir=@htmldir@
|
|
|
|
echo "
|
|
Installation directories :
|
|
|
|
Library directory : ................... $libdir
|
|
Program directory : ................... $bindir
|
|
Pkgconfig directory : ................. $pkgconfigdir
|
|
HTML docs directory : ................. $htmldir
|
|
"
|
|
echo "Compiling some other packages against libsndfile may require"
|
|
echo "the addition of '$pkgconfigdir' to the"
|
|
echo "PKG_CONFIG_PATH environment variable."
|
|
echo
|