author | kergoth <kergoth> | 2003-01-16 06:33:48 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 06:33:48 (UTC) |
commit | 711c066cc55172ec77749a369ba0273df73037b2 (patch) (unidiff) | |
tree | 3b574a4e10f41af5f82c803606f8a79bd916a661 | |
parent | 9a90cb1a9e61d2bc3298f2131671d9f32abbac5a (diff) | |
download | opie-711c066cc55172ec77749a369ba0273df73037b2.zip opie-711c066cc55172ec77749a369ba0273df73037b2.tar.gz opie-711c066cc55172ec77749a369ba0273df73037b2.tar.bz2 |
Adjust included pro file to handle target path change depending on lib/nonlib.. preparing ipk generation via 'make install'.
-rw-r--r-- | include.pro | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include.pro b/include.pro index fb27a6d..301d6a8 100644 --- a/include.pro +++ b/include.pro | |||
@@ -3,6 +3,14 @@ | |||
3 | # base opie install path | 3 | # base opie install path |
4 | outdir = /opt/QtPalmtop | 4 | outdir = /opt/QtPalmtop |
5 | 5 | ||
6 | contains( TEMPLATE, lib ) { | ||
7 | target.path = $$outdir/lib | ||
8 | } | ||
9 | !contains( TEMPLATE, lib ) { | ||
10 | target.path = $$outdir/bin | ||
11 | } | ||
12 | INSTALLS += target | ||
13 | |||
6 | # ipkg control files | 14 | # ipkg control files |
7 | control.path = /CONTROL | 15 | control.path = /CONTROL |
8 | control.files = control postinst prerm postrm preinst conffiles | 16 | control.files = control postinst prerm postrm preinst conffiles |