diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-04-17 13:53:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-04-17 13:53:27 +0900 |
commit | 7ceb46211ddfdbfd07b79e9cd2077ed0605ef47e (patch) | |
tree | 6a309da61ff8fad680a38dd405e7066646262cfa /ubuntu/raring/dependencies/qt3/debian/maintain/build-examples.sh | |
parent | e43a1170040313d3384f0eefdf7a071059b9c2a9 (diff) | |
download | tde-packaging-7ceb46211ddfdbfd07b79e9cd2077ed0605ef47e.tar.gz tde-packaging-7ceb46211ddfdbfd07b79e9cd2077ed0605ef47e.zip |
Removed Ubuntu/raring folder
Diffstat (limited to 'ubuntu/raring/dependencies/qt3/debian/maintain/build-examples.sh')
-rw-r--r-- | ubuntu/raring/dependencies/qt3/debian/maintain/build-examples.sh | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/ubuntu/raring/dependencies/qt3/debian/maintain/build-examples.sh b/ubuntu/raring/dependencies/qt3/debian/maintain/build-examples.sh deleted file mode 100644 index b56d51e42..000000000 --- a/ubuntu/raring/dependencies/qt3/debian/maintain/build-examples.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -BUILDDIR=$PWD -export QTDIR=/usr/share/qt3 - -# first copy over the libqt-mt.so build configuration of .qmake.cache -cp /usr/share/qt3/.qmake.cache ./.qmake.cache - -# Now compile the examples. The themes example -# won't work since qconfig.h is not really correct with the -# ifdef's for the QT_NO_xyz_STYLE, so we use make -k to continue -cd examples; qmake -o Makefile examples.pro; make -k - -# Now compile the tutorial. -cd $BUILDDIR/tutorial; qmake -o Makefile tutorial.pro; make - -# Then the designer examples. -cd $BUILDDIR/tools/designer/examples -for a in `find . -type d -maxdepth 1 -mindepth 1`; do - cd $a && qmake -o Makefile $a.pro; make; cd ..; -done - -# There is a bigger sql example in book/ with more subdirectories: -cd book -for a in `find . -type d -maxdepth 1 -mindepth 1`; do - cd $a && qmake -o Makefile $a.pro; make; cd ..; -done - -# Finally, build the linguist tutorials: -cd $BUILDDIR/tools/linguist/tutorial -for a in `find . -type d -maxdepth 1 -mindepth 1`; do - cd $a && qmake -o Makefile $a.pro; make; cd ..; -done - -# Return to the build directory -cd $BUILDDIR |