mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 04:47:14 +02:00
26 lines
782 B
Diff
26 lines
782 B
Diff
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
|
|
|