mirror of
https://github.com/KDE/kde-linux.git
synced 2026-01-23 15:18:49 -05:00
this should help us eventually force meson to strip as well even though kde-builder currently doesn't support it
12 lines
329 B
Ruby
Executable File
12 lines
329 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
# SPDX-FileCopyrightText: 2024 Harald Sitter <sitter@kde.org>
|
|
|
|
# Hijack meson to run the strip target instead of the default install target.
|
|
|
|
p ['xxxxx', ARGV]
|
|
|
|
exec('/usr/bin/meson', *ARGV)
|