mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
improved automake directory detection for echomixer tree
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
07da829731
commit
a3102522e2
1 changed files with 4 additions and 1 deletions
|
|
@ -1,12 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
if test "x$AUTOMAKE_DIR" = "x"; then
|
||||
if test -z "$AUTOMAKE_DIR"; then
|
||||
if test -d /usr/local/share/automake; then
|
||||
AUTOMAKE_DIR=/usr/local/share/automake
|
||||
fi
|
||||
if test -d /usr/share/automake; then
|
||||
AUTOMAKE_DIR="/usr/share/automake"
|
||||
fi
|
||||
if test -z "$AUTOMAKE_DIR"; then
|
||||
AUTOMAKE_DIR=/usr/share/`ls /usr/share | grep automake | tail -n 1`
|
||||
fi
|
||||
fi
|
||||
|
||||
for f in install-sh mkinstalldirs missing; do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue