mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
6dc544c661
A few macros are declared obsolete from autoconf 2.70. In order to avoid breaking compatibility with 2.69 removing them, these warnings are ignored. Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
18 lines
443 B
Bash
Executable File
18 lines
443 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
autoreconf --install --symlink -f -Wno-obsolete
|
|
|
|
libdir() {
|
|
echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
|
|
}
|
|
|
|
args="--prefix=/usr --libdir=$(libdir /usr/lib)"
|
|
|
|
echo
|
|
echo "----------------------------------------------------------------"
|
|
echo "Initialized build system. For a common configuration please run:"
|
|
echo "----------------------------------------------------------------"
|
|
echo
|
|
echo "./configure $args"
|
|
echo
|