Fix build for !x86 && !ppc
At least this should fix other platform builds to the point they worked before. The ICU_DEVEL zip name assign was moved inside the if block, making it empty for other archs, and ExtractArchive was of course having issues with this. So I moved the rest inside the if block as well. Should fix at least kernel builds.
This commit is contained in:
@@ -108,10 +108,6 @@ if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 {
|
|||||||
: extracted-icu
|
: extracted-icu
|
||||||
] ;
|
] ;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
Echo "ICU not available for $(TARGET_ARCH)" ;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# zip file and output directory
|
# zip file and output directory
|
||||||
HAIKU_ICU_DEVEL_ZIP_FILE = [ DownloadFile $(HAIKU_ICU_DEVEL_PACKAGE)
|
HAIKU_ICU_DEVEL_ZIP_FILE = [ DownloadFile $(HAIKU_ICU_DEVEL_PACKAGE)
|
||||||
@@ -126,6 +122,9 @@ HAIKU_ICU_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_ICU_DEVEL_DIR)
|
|||||||
|
|
||||||
HAIKU_ICU_HEADERS
|
HAIKU_ICU_HEADERS
|
||||||
= [ FDirName $(HAIKU_ICU_DEVEL_DIR) develop headers 3rdparty ] ;
|
= [ FDirName $(HAIKU_ICU_DEVEL_DIR) develop headers 3rdparty ] ;
|
||||||
|
} else {
|
||||||
|
Echo "ICU not available for $(TARGET_ARCH)" ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# CLucene
|
# CLucene
|
||||||
|
|||||||
Reference in New Issue
Block a user