mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
** fixed tools/qgiscommit by using mktemp, thanx mcoletti ** pluginpath is now taken of libdir to be 64bit compliant (e.g./usr/lib64/qgis) git-svn-id: http://svn.osgeo.org/qgis/trunk@1109 c8812cc2-4d05-0410-92ff-de0c093fc19c
10 lines
274 B
Bash
Executable File
10 lines
274 B
Bash
Executable File
#!/bin/sh
|
|
echo Configuring build environment for QGIS
|
|
aclocal \
|
|
&& libtoolize --force --copy \
|
|
&& autoheader --force -W all \
|
|
&& automake --add-missing --foreign --copy \
|
|
&& autoconf --force \
|
|
&& echo Now running configure to configure QGIS \
|
|
&& ./configure $@
|