]> git.pld-linux.org Git - packages/android-tools.git/commitdiff
fix compilation out of tree issues
authorElan Ruusamäe <glen@delfi.ee>
Sun, 13 Nov 2016 13:33:39 +0000 (15:33 +0200)
committerElan Ruusamäe <glen@delfi.ee>
Sun, 13 Nov 2016 13:33:39 +0000 (15:33 +0200)
generate_build.rb

index 400dec887911eeb76a76bd600b961a50e205db6f..ee7660fbb372912f37186f3e1530b09987175768 100644 (file)
@@ -139,7 +139,7 @@ fastbootfiles = %w(
   usb_linux.cpp
   util_linux.cpp
 )
-libfastboot = compile(expand('fastboot', fastbootfiles), '-DFASTBOOT_REVISION=\"$PKGVER\" -D_GNU_SOURCE -Iadb -Iinclude -Imkbootimg -Ibase/include -Ilibsparse/include -I../extras/ext4_utils -I../extras/f2fs_utils')
+libfastboot = compile(expand('fastboot', fastbootfiles), '-DFASTBOOT_REVISION=\"$PKGVER\" -D_GNU_SOURCE -Iadb -Iinclude -Imkbootimg -Ibase/include -Ilibsparse/include -Iextras/ext4_utils -Iextras/f2fs_utils')
 
 sparsefiles = %w(
   backed_block.c
@@ -174,7 +174,7 @@ ext4files = %w(
   crc16.c
   ext4_sb.c
 )
-libext4 = compile(expand('../extras/ext4_utils', ext4files), '-Ilibsparse/include -Iinclude')
+libext4 = compile(expand('extras/ext4_utils', ext4files), '-Ilibsparse/include -Iinclude')
 
 link('fastboot/fastboot', libsparse + libzip + liblog + libutil + libcutils + libbase + libext4 + libfastboot + libadbsh + libadbd, '-lpthread -lselinux -lz -lcrypto -lutil')
 
This page took 0.24527 seconds and 4 git commands to generate.