summaryrefslogtreecommitdiff
path: root/configure
Unidiff
Diffstat (limited to 'configure') (more/less context) (show whitespace changes)
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index 7e9ab68..a9d229e 100755
--- a/configure
+++ b/configure
@@ -139,13 +139,15 @@ mkdir -p include/qpe
139mkdir -p include/opie 139mkdir -p include/opie
140( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) 140( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; )
141 141
142 142
143echo Creating makefiles... 143echo Creating makefiles...
144 144
145sed -e 's/^\(VERSION.*= \).*/\1'$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT/ <library/library.pro >library/library.pro-v 145# Set version for library directly
146# Version 1.5.0 right now for compat.
147sed -e 's/^\(VERSION.*= \).*/\1'1.5.0.$VERSION_PAT/ <library/library.pro >library/library.pro-v
146mv library/library.pro-v library/library.pro 148mv library/library.pro-v library/library.pro
147 149
148if [ "$QT3" = yes ] 150if [ "$QT3" = yes ]
149then 151then
150 VCONFIG="CONFIG+=qt3" 152 VCONFIG="CONFIG+=qt3"
151else 153else