mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
9 lines
237 B
Bash
Executable File
9 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
echo Configuring build environment for QGIS
|
|
aclocal \
|
|
&& libtoolize --force --copy \
|
|
&& automake --add-missing --foreign --copy \
|
|
&& autoconf --force \
|
|
&& echo Now running configure to configure QGIS \
|
|
&& ./configure
|