mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
090ac79235
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
28 lines
816 B
Diff
28 lines
816 B
Diff
From ab8bd63b32b963ddc7346a2dabfd39fba8bfba72 Mon Sep 17 00:00:00 2001
|
|
From: Paul Meyer <49727155+katexochen@users.noreply.github.com>
|
|
Date: Sun, 13 Aug 2023 14:13:21 +0200
|
|
Subject: [PATCH] make config path injectable during build
|
|
|
|
This way a config path can be added to the list during build by
|
|
defining the makro.
|
|
|
|
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
|
|
---
|
|
dumpasn1.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/dumpasn1.c b/dumpasn1.c
|
|
index e7bf268..94f1582 100644
|
|
--- a/dumpasn1.c
|
|
+++ b/dumpasn1.c
|
|
@@ -451,6 +451,10 @@ static const char *configPaths[] = {
|
|
/* General environment-based paths */
|
|
"$DUMPASN1_PATH/",
|
|
|
|
+ #ifdef DUMPASN1_CONFIG_PATH
|
|
+ DUMPASN1_CONFIG_PATH,
|
|
+ #endif /* DUMPASN1_CONFIG_PATH */
|
|
+
|
|
NULL
|
|
};
|
|
#endif /* OS-specific search paths */
|