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 061232c5fdce9783009c3d9878653188001942fd Mon Sep 17 00:00:00 2001
From: Peter Robinson <pbrobinson@gmail.com>
Date: Sun, 21 Apr 2024 21:00:46 +0100
Subject: [PATCH] Revert "build: fix rpath issue"
This reverts commit 5e528fc54368ce826a3bb5751499061cfa1bda71.
---
tools/meson.build | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -24,11 +24,9 @@
executable('elc3', ['elc3.c'],
link_with : lc3toolslib,
include_directories: inc,
- install: true,
- install_rpath: join_paths(get_option('prefix'), get_option('libdir')))
+ install: true)
executable('dlc3', ['dlc3.c'],
link_with : lc3toolslib,
include_directories: inc,
- install: true,
- install_rpath: join_paths(get_option('prefix'), get_option('libdir')))
+ install: true)
|