lfs-uefi: fix efivar-37 FTBFS
[linux_from_scratch_hints.git] / ATTACHMENTS / autotools-multiversion / automake-wrapper
blob7eda92b6327769d3d7b8bd8a7cbaa703ef8f36d2
1 #!/bin/sh
3 # Dir where all executables reside
4 LOCATION="/usr/bin"
6 COMMAND=${0##*/}
8 # Default Version
9 if [ -z "$WANT_AUTOMAKE" ]
10 then
11 WANT_AUTOMAKE="1.9"
14 # Execute the command if found
15 if [ -x $LOCATION/$COMMAND-$WANT_AUTOMAKE ]
16 then
17 exec $LOCATION/$COMMAND-$WANT_AUTOMAKE $@
18 else
19 echo "Cannot find $COMMAND"
20 exit 1