mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 16:50:06 +02:00
47 lines
1.5 KiB
Plaintext
47 lines
1.5 KiB
Plaintext
From 301d22aa7f6ebf8f6e2b0a4044b28b5580cf7a71 Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@gmail.com>
|
|
Date: Wed, 17 Sep 2014 16:54:23 +0200
|
|
Subject: fix COMMON directory reference.
|
|
|
|
|
|
diff --git a/subversion/libsvn_subr/config_file.c b/subversion/libsvn_subr/config_file.c
|
|
index a437c89..a1f2a18 100644
|
|
--- a/subversion/libsvn_subr/config_file.c
|
|
+++ b/subversion/libsvn_subr/config_file.c
|
|
@@ -610,7 +610,7 @@ svn_config__sys_config_path(const char **path_p,
|
|
{
|
|
char folder[B_PATH_NAME_LENGTH];
|
|
|
|
- status_t error = find_directory(B_COMMON_SETTINGS_DIRECTORY, -1, false,
|
|
+ status_t error = find_directory(B_SYSTEM_SETTINGS_DIRECTORY, -1, false,
|
|
folder, sizeof(folder));
|
|
if (error)
|
|
return SVN_NO_ERROR;
|
|
--
|
|
2.51.0
|
|
|
|
|
|
From c46bb69900628aa132e47057f161a18666ce422b Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Joachim=20Mairb=C3=B6ck?= <j.mairboeck@gmail.com>
|
|
Date: Fri, 5 Jul 2024 21:05:20 +0200
|
|
Subject: use make pure_install for the perl bindings
|
|
|
|
This avoids installing perllocal.pod
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index 7f0a37d..ecdfde1 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -906,7 +906,7 @@ check-swig-pl: swig-pl swig-pl-lib
|
|
cd $(SWIG_PL_DIR)/native; $(MAKE) test
|
|
|
|
install-swig-pl: swig-pl install-swig-pl-lib
|
|
- cd $(SWIG_PL_DIR)/native; $(MAKE) install
|
|
+ cd $(SWIG_PL_DIR)/native; $(MAKE) pure_install
|
|
|
|
EXTRACLEAN_SWIG_PL=rm -f $(SWIG_PL_SRC_DIR)/native/svn_*.c \
|
|
$(SWIG_PL_SRC_DIR)/native/core.c
|
|
--
|
|
2.51.0
|
|
|