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