summaryrefslogtreecommitdiff
path: root/debian/patches/0110-use_relative_lib_path.patch
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2022-10-02 20:33:39 +0200
committerJörg Frings-Fürst <debian@jff.email>2022-10-02 20:33:39 +0200
commitac6e0b731b9f0b2efd392e3309a5c07e2a66adad (patch)
treed3225c4f583bbc2dd2d4d1270599bdc91d6bbb57 /debian/patches/0110-use_relative_lib_path.patch
parentbeb8b0dad71871aa66b63901b3e6b6c047e1a646 (diff)
parent133064a8fce1a02e83874295ab20ab1dee304777 (diff)
Merge branch 'release/debian/0.30.17-1'debian/0.30.17-1
Diffstat (limited to 'debian/patches/0110-use_relative_lib_path.patch')
-rw-r--r--debian/patches/0110-use_relative_lib_path.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/debian/patches/0110-use_relative_lib_path.patch b/debian/patches/0110-use_relative_lib_path.patch
deleted file mode 100644
index 3e64e9f..0000000
--- a/debian/patches/0110-use_relative_lib_path.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Description: Use relative path for lib
-Author: Jens Georg <mail@jensge.org>
-Origin: upstream, https://gitlab.gnome.org/GNOME/shotwell/-/commit/b3216719e9504518d6866adaaec532e5a7c09481
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1010571
-Forwarded: not-needed
-Applied-Upstream: commit
-Last-Update: 2022-05-04
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-Index: trunk/meson.build
-===================================================================
---- trunk.orig/meson.build
-+++ trunk/meson.build
-@@ -12,7 +12,7 @@ conf.set('_VERSION', '"@0@"'.format(meso
- conf.set('_PREFIX', '"@0@"'.format(get_option('prefix')))
- conf.set('_LANG_SUPPORT_DIR', '"@0@"'.format(join_paths(get_option('prefix'), get_option('localedir'))))
- conf.set('_LIBEXECDIR', '"@0@"'.format(join_paths(get_option('prefix'), get_option('libexecdir'))))
--conf.set('_LIB', '"@0@"'.format(join_paths(get_option('prefix'), get_option('libdir'))))
-+conf.set('_LIB', '"@0@"'.format(get_option('libdir')))
- configure_file(output : 'config.h', configuration: conf)
-
- config_incdir = include_directories('.')