Sebastian Roth
Sebastian Roth

Reputation: 11537

Generate android AOSP GPL package

Within AOSP, I can find the file build/core/tasks/collect_gpl_sources.mk.

Apparently it is used to create a archive of all GPL sources for redistribution.

How may I run the target within that makefile and generate the archive?

Upvotes: 0

Views: 263

Answers (1)

odexcide
odexcide

Reputation: 682

Executing make gpl_source_tgz will create the archive.

The resulting archive will be at ${ANDROID_BUILD_TOP}/out/host/common/obj/PACKAGING/gpl_source_intermediates/gpl_sources.tgz.

Upvotes: 1

Related Questions