<build>package: Fix build

* StandardErrorOutput.cpp no longer exists (respectively has been moved
  to libpackage).
* Add hack to allow building more correctly on Haiku. We were using
  the installed package kit headers, not the ones from the working
  directory.
This commit is contained in:
Ingo Weinhold
2013-04-02 17:27:29 +00:00
parent 04d1edefe2
commit fc75f2df0c
+8 -1
View File
@@ -1,5 +1,13 @@
SubDir HAIKU_TOP src tools package ;
# TODO: Hack to make things build on Haiku. The right solution is to build
# libbe_build and friends on Haiku as well and use the exact same build
# environment as on other systems.
if $(HOST_PLATFORM) = haiku_host {
UseHeaders [ FDirName $(HAIKU_TOP) headers build ] : true ;
UseHeaders [ FDirName $(HAIKU_TOP) headers build os ] : true ;
}
UsePrivateBuildHeaders shared kernel ;
SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src bin package ] ;
@@ -15,7 +23,6 @@ BuildPlatformMain <build>package :
package.cpp
PackageWriterListener.cpp
PackageWritingUtils.cpp
StandardErrorOutput.cpp
:
libpackage_build.so $(HOST_LIBBE) $(HOST_LIBSUPC++)