summaryrefslogtreecommitdiff
path: root/solenv/Package_gdb.mk
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-10-29 17:51:06 +0100
committerMichael Stahl <mstahl@redhat.com>2013-10-30 00:01:33 +0100
commit2cb380bad6e7c8abaf15a7606d8e95ca86d5c8e6 (patch)
tree523f918977e9092e40fff3ed76271eb8fc1bb93f /solenv/Package_gdb.mk
parent4b3dc6665dfb4a88c3068e769418866993c12b37 (diff)
solenv: remove gdb Package and CustomTarget
Since it's necessary to call install-gdb-printers anyway (which is what the CustomTarget_gdb does), just do it first thing in "build" target so that unit tests running during a from-scratch build get the pretty printers too. Change-Id: I357dfb828a2e0eed675aa552d3256f96a312a890
Diffstat (limited to 'solenv/Package_gdb.mk')
-rw-r--r--solenv/Package_gdb.mk38
1 files changed, 0 insertions, 38 deletions
diff --git a/solenv/Package_gdb.mk b/solenv/Package_gdb.mk
deleted file mode 100644
index aca8286af4f9..000000000000
--- a/solenv/Package_gdb.mk
+++ /dev/null
@@ -1,38 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-$(eval $(call gb_Package_Package,solenv_gdb,$(call gb_CustomTarget_get_workdir,solenv/gdb)))
-
-$(eval $(call gb_Package_set_outdir,solenv_gdb,$(OUTDIR)))
-
-# keep in sync with solenv/bin/install-gdb-printers
-$(eval $(call gb_Package_add_files,solenv_gdb,lib,\
- $(if $(MERGELIBS), \
- $(call gb_Library_get_runtime_filename,merged)-gdb.py \
- $(if $(filter ALL,$(MERGELIBS)), \
- $(call gb_Library_get_runtime_filename,urelibs)-gdb.py \
- , \
- $(call gb_Library_get_runtime_filename,cppu)-gdb.py \
- $(call gb_Library_get_runtime_filename,sal)-gdb.py \
- $(call gb_Library_get_runtime_filename,sw)-gdb.py \
- ) \
- , \
- $(call gb_Library_get_runtime_filename,basegfx)-gdb.py \
- $(call gb_Library_get_runtime_filename,cppu)-gdb.py \
- $(call gb_Library_get_runtime_filename,sal)-gdb.py \
- $(call gb_Library_get_runtime_filename,svl)-gdb.py \
- $(call gb_Library_get_runtime_filename,sw)-gdb.py \
- $(call gb_Library_get_runtime_filename,tl)-gdb.py \
- ) \
- $(call gb_Library_get_runtime_filename,writerfilter)-gdb.py \
-))
-
-$(eval $(call gb_Package_use_custom_target,solenv_gdb,solenv/gdb))
-
-# vim: set shiftwidth=4 tabstop=4 noexpandtab: