File: 0010-Drop-code-that-makes-build-unreproducible.patch

package info (click to toggle)
obs-studio 29.0.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 35,920 kB
  • sloc: ansic: 182,921; cpp: 98,959; sh: 1,591; python: 945; makefile: 858; javascript: 19
file content (26 lines) | stat: -rw-r--r-- 719 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: =?utf-8?q?=22IOhannes_m_zm=C3=B6lnig_=28Debian/GNU=29=22?=
 <umlaeute@debian.org>
Date: Fri, 23 Sep 2022 20:40:26 +0200
Subject: Drop code that makes build unreproducible

Notably, the FILE_LINE macro embeds the full path in the scripting wrappers

Origin: Debian
Forwarded: not-needed
Last-Update: 2022-09-20
---
 libobs/util/base.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libobs/util/base.h b/libobs/util/base.h
index b643604..9861781 100644
--- a/libobs/util/base.h
+++ b/libobs/util/base.h
@@ -33,7 +33,6 @@ extern "C" {
 #define S__LINE__ STRINGIFY_(__LINE__)
 
 #define INT_CUR_LINE __LINE__
-#define FILE_LINE __FILE__ " (" S__LINE__ "): "
 
 #define OBS_COUNTOF(x) (sizeof(x) / sizeof(x[0]))