aboutsummaryrefslogtreecommitdiffstats
path: root/testing/aufs-util/0003-make-install-compatible-with-busybox-install.patch
blob: 7a734a0d5155a0b41bda983486e28c564f3c20f0 (plain)
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 98c3dab2a36ae5beaedf0df2a45333bbfeb0e65b Mon Sep 17 00:00:00 2001
From: Natanael Copa <natanael.copa@docker.com>
Date: Thu, 29 Sep 2016 15:36:10 +0200
Subject: [PATCH 3/3] make install compatible with busybox install

busybox install does not support the option -T
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index ffa4b11..e003832 100644
--- a/Makefile
+++ b/Makefile
@@ -159,7 +159,7 @@ install_etc: File = etc_default_aufs
 install_etc: Tgt = ${DESTDIR}/etc/default/aufs
 install_etc: ${File}
 	${INSTALL} -d $(dir ${Tgt})
-	${Install} -m 644 -T ${File} ${Tgt}
+	${Install} -m 644 ${File} ${Tgt}
 install_man5: File = aufs.5
 install_man5: Tgt = ${DESTDIR}${ManDir}/man5
 install_man8: File = aumvdown.8
-- 
2.11.0