diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-01-18 07:50:19 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-01-18 07:53:02 -0300 |
commit | 4638928b779efbfe274248d2d52f44e275c52957 (patch) | |
tree | 80ba08aea12564cac3e54a84f79d751631934885 /testing/aufs-util/0003-make-install-compatible-with-busybox-install.patch | |
parent | df5167a5ac6280b82c94e22e18ee9da744e90c68 (diff) | |
download | aports-4638928b779efbfe274248d2d52f44e275c52957.tar.bz2 aports-4638928b779efbfe274248d2d52f44e275c52957.tar.xz |
testing/aufs-utils: new aport
utils for aufs
Diffstat (limited to 'testing/aufs-util/0003-make-install-compatible-with-busybox-install.patch')
-rw-r--r-- | testing/aufs-util/0003-make-install-compatible-with-busybox-install.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/aufs-util/0003-make-install-compatible-with-busybox-install.patch b/testing/aufs-util/0003-make-install-compatible-with-busybox-install.patch new file mode 100644 index 0000000000..7a734a0d51 --- /dev/null +++ b/testing/aufs-util/0003-make-install-compatible-with-busybox-install.patch @@ -0,0 +1,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 + |