author | andyq <andyq> | 2002-10-10 11:37:08 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-10 11:37:08 (UTC) |
commit | 0d81ca9a11acbe0fb4bb86c176293c119c92f0da (patch) (unidiff) | |
tree | e1a621a224266621431039d1c1edf50cb4889b41 | |
parent | b9729e00576b3466619b1932f410ab39fd719b52 (diff) | |
download | opie-0d81ca9a11acbe0fb4bb86c176293c119c92f0da.zip opie-0d81ca9a11acbe0fb4bb86c176293c119c92f0da.tar.gz opie-0d81ca9a11acbe0fb4bb86c176293c119c92f0da.tar.bz2 |
Fixed missing / off ipkg list locations (for running on a linux box)
-rw-r--r-- | noncore/settings/aqpkg/global.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/settings/aqpkg/global.h b/noncore/settings/aqpkg/global.h index be3ede4..4df2f15 100644 --- a/noncore/settings/aqpkg/global.h +++ b/noncore/settings/aqpkg/global.h | |||
@@ -15,43 +15,43 @@ | |||
15 | * * | 15 | * * |
16 | ***************************************************************************/ | 16 | ***************************************************************************/ |
17 | 17 | ||
18 | #ifndef __GLOBAL_H | 18 | #ifndef __GLOBAL_H |
19 | #define __GLOBAL_H | 19 | #define __GLOBAL_H |
20 | 20 | ||
21 | // Uncomment the below line to run on a Linux box rather than a Zaurus | 21 | // Uncomment the below line to run on a Linux box rather than a Zaurus |
22 | // box this allows you to change where root is, and where to load config files from | 22 | // box this allows you to change where root is, and where to load config files from |
23 | //#define X86 | 23 | #define X86 |
24 | 24 | ||
25 | // Sets up location of ipkg.conf and root directory | 25 | // Sets up location of ipkg.conf and root directory |
26 | #ifdef QWS | 26 | #ifdef QWS |
27 | 27 | ||
28 | #ifndef X86 | 28 | #ifndef X86 |
29 | 29 | ||
30 | // Running QT/Embedded on an arm processor | 30 | // Running QT/Embedded on an arm processor |
31 | #define IPKG_CONF "/etc/ipkg.conf" | 31 | #define IPKG_CONF "/etc/ipkg.conf" |
32 | #define ROOT "/" | 32 | #define ROOT "/" |
33 | #define IPKG_DIR "/usr/lib/ipkg/" | 33 | #define IPKG_DIR "/usr/lib/ipkg/" |
34 | 34 | ||
35 | #else | 35 | #else |
36 | 36 | ||
37 | // Running QT/Embedded on a X86 linux box | 37 | // Running QT/Embedded on a X86 linux box |
38 | #define IPKG_DIR "/home/andy/projects/aqpkg/aqpkg/data" | ||
39 | #define IPKG_CONF "/home/andy/projects/aqpkg/aqpkg/data/ipkg.conf" | 38 | #define IPKG_CONF "/home/andy/projects/aqpkg/aqpkg/data/ipkg.conf" |
40 | #define ROOT "/home/andy/projects/aqpkg/aqpkg/data/root" | 39 | #define ROOT "/home/andy/projects/aqpkg/aqpkg/data/root" |
40 | #define IPKG_DIR "/home/andy/projects/aqpkg/aqpkg/data/" | ||
41 | 41 | ||
42 | #endif | 42 | #endif |
43 | 43 | ||
44 | #else | 44 | #else |
45 | 45 | ||
46 | // Running QT on a X86 linux box | 46 | // Running QT on a X86 linux box |
47 | #define IPKG_CONF "/home/andy/projects/aqpkg/aqpkg/data/ipkg.conf" | 47 | #define IPKG_CONF "/home/andy/projects/aqpkg/aqpkg/data/ipkg.conf" |
48 | #define ROOT "/home/andy/projects/aqpkg/aqpkg/data/root" | 48 | #define ROOT "/home/andy/projects/aqpkg/aqpkg/data/root" |
49 | #define IPKG_DIR "/home/andy/projects/aqpkg/aqpkg/data" | 49 | #define IPKG_DIR "/home/andy/projects/aqpkg/aqpkg/data/" |
50 | 50 | ||
51 | #endif | 51 | #endif |
52 | 52 | ||
53 | 53 | ||
54 | // Uncomment the below line to turn on memory checking | 54 | // Uncomment the below line to turn on memory checking |
55 | //#define _DEBUG 1 | 55 | //#define _DEBUG 1 |
56 | 56 | ||
57 | #ifndef __MEMFILE_C | 57 | #ifndef __MEMFILE_C |