author | kergoth <kergoth> | 2003-01-16 07:24:34 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 07:24:34 (UTC) |
commit | 5a2f0d70810b6921e255ba6c5c2d15725ad7dc7b (patch) (unidiff) | |
tree | 62b5c08bc7b596955490a09e4420ec380dfd3607 | |
parent | f564f5118b4b30253f7cce57f5cc4ac94cbe31e6 (diff) | |
download | opie-5a2f0d70810b6921e255ba6c5c2d15725ad7dc7b.zip opie-5a2f0d70810b6921e255ba6c5c2d15725ad7dc7b.tar.gz opie-5a2f0d70810b6921e255ba6c5c2d15725ad7dc7b.tar.bz2 |
DESTDIR->INSTALL_ROOT
-rw-r--r-- | include.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include.pro b/include.pro index 12908ec..41d8cc7 100644 --- a/include.pro +++ b/include.pro | |||
@@ -34,36 +34,36 @@ INSTALLS += init | |||
34 | # data, default path is /usr/share/$$TARGET | 34 | # data, default path is /usr/share/$$TARGET |
35 | data.path = /usr/share/$$TARGET | 35 | data.path = /usr/share/$$TARGET |
36 | data.files = share/* | 36 | data.files = share/* |
37 | INSTALLS += data | 37 | INSTALLS += data |
38 | 38 | ||
39 | etc.path = $$outdir/etc/ | 39 | etc.path = $$outdir/etc/ |
40 | etc.files = etc/* | 40 | etc.files = etc/* |
41 | INSTALLS += etc | 41 | INSTALLS += etc |
42 | 42 | ||
43 | apps.path = $$outdir/apps/ | 43 | apps.path = $$outdir/apps/ |
44 | apps.files = apps/* | 44 | apps.files = apps/* |
45 | INSTALLS += apps | 45 | INSTALLS += apps |
46 | 46 | ||
47 | # sounds, default path is $$outdir/sounds/$$TARGET | 47 | # sounds, default path is $$outdir/sounds/$$TARGET |
48 | sounds.path = $$outdir/sounds/$$TARGET | 48 | sounds.path = $$outdir/sounds/$$TARGET |
49 | sounds.files = sounds/* | 49 | sounds.files = sounds/* |
50 | INSTALLS += sounds | 50 | INSTALLS += sounds |
51 | 51 | ||
52 | # anything in nonstandard paths | 52 | # anything in nonstandard paths |
53 | root.path = / | 53 | root.path = / |
54 | root.files = root/* | 54 | root.files = root/* |
55 | INSTALLS += root | 55 | INSTALLS += root |
56 | 56 | ||
57 | # new targets | 57 | # new targets |
58 | 58 | ||
59 | lupdate.target = lupdate | 59 | lupdate.target = lupdate |
60 | lupdate.commands = lupdate -noobsolete $(PRO) | 60 | lupdate.commands = lupdate -noobsolete $(PRO) |
61 | 61 | ||
62 | lrelease.target = lrelease | 62 | lrelease.target = lrelease |
63 | lrelease.commands = lrelease $(PRO) | 63 | lrelease.commands = lrelease $(PRO) |
64 | 64 | ||
65 | ipk.target = ipk | 65 | ipk.target = ipk |
66 | ipk.commands = tmp=`mktemp -d /tmp/ipkg-opie.XXXXXXXXXX` && ( $(MAKE) DESTDIR="$$$$tmp" install && ipkg-build $$$$tmp; rm -rf $$$$tmp; ) | 66 | ipk.commands = tmp=`mktemp -d /tmp/ipkg-opie.XXXXXXXXXX` && ( $(MAKE) INSTALL_ROOT="$$$$tmp" install && ipkg-build $$$$tmp; rm -rf $$$$tmp; ) |
67 | 67 | ||
68 | QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease ipk | 68 | QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease ipk |
69 | 69 | ||