summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Wang <wbsecg1@gmail.com>2012-09-28 00:02:04 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-28 16:21:57 +0100
commitd7ab351cddbebc8bd4fbd20b056158fcd8401d55 (patch)
tree8e65c835d97691eee644a266bfdb66294bd458c9
parent793ed1bf88e8107f01b54e15fe8e39a4a6a0ca10 (diff)
Fix -largefile option in configure
-largefile is regarded as a library named argefile and added to Makefile as a link flag. It will cause a link error. Change-Id: I8ac30896d4e473f7e98c937c8906b1b9c620cf1e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index e8334946d1..cb9497e62e 100755
--- a/configure
+++ b/configure
@@ -1108,6 +1108,10 @@ while [ "$#" -gt 0 ]; do
VAL=`echo $1 | sed 's,-R,,'`
fi
;;
+ -largefile)
+ VAR="largefile"
+ VAL="yes"
+ ;;
-l?*|-l)
VAR="add_link"
if [ "$1" = "-l" ]; then