- Timestamp:
- Mar 27, 2013 11:19:00 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r44580 r45204 1675 1675 cat $ODIR.tmp_src.c >> $LOG 1676 1676 echo "using the following command line:" >> $LOG 1677 echo "$CC -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.c -nostdinc -I$LINUX/include" >> $LOG 1677 echo "$CC -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.c -nostdinc -I$LINUX/include " \ 1678 "-I$LINUX/include/generated/uapi" >> $LOG 1678 1679 $CC -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.c -nostdinc -I$LINUX/include \ 1679 1680 -I$LINUX/include/generated/uapi >> $LOG 2>&1 … … 1891 1892 for p in $PYTHONDIR; do 1892 1893 for d in $SUPPYTHONLIBS; do 1893 for b in lib 64 lib/64 lib; do1894 for b in lib/x86_64-linux-gnu lib/i386-linux-gnu lib64 lib/64 lib; do 1894 1895 echo "compiling the following source file:" >> $LOG 1895 1896 cat $ODIR.tmp_src.cc >> $LOG -
trunk/src/VBox/Installer/linux/distributions_deb
r43225 r45204 5 5 _Debian_etch = DEBIAN_4_0 6 6 _Debian_sarge = DEBIAN_3_1 7 _Ubuntu_raring = UBUNTU_13_04 7 8 _Ubuntu_quantal = UBUNTU_12_10 8 9 _Ubuntu_precise = UBUNTU_12_04 -
trunk/src/libs/xpcom18a4/python/gen_python_deps.py
r43105 r45204 24 24 return None 25 25 26 lib = os.path.join(p, "lib", dllpre+"python"+v+dllsuff) 26 lib = os.path.join(p, "lib/i386-linux-gnu", dllpre+"python"+v+dllsuff) 27 if not os.path.isfile(lib): 28 lib = os.path.join(p, "lib", dllpre+"python"+v+dllsuff) 27 29 28 30 if bitness_magic == 1: 29 31 lib64 = os.path.join(p, "lib", "64", dllpre+"python"+v+dllsuff) 30 32 elif bitness_magic == 2: 31 lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff) 32 if not os.path.isfile(lib64): 33 lib64 = lib 33 lib64 = os.path.join(p, "lib/x86_64-linux-gnu", dllpre+"python"+v+dllsuff) 34 if not os.path.isfile(lib64): 35 lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff) 36 if not os.path.isfile(lib64): 37 lib64 = lib 34 38 else: 35 39 lib64 = None
Note:
See TracChangeset
for help on using the changeset viewer.