commit: 625632955cec96baaaafc0dd83e8497cd55d9b9e
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 18 03:01:40 2022 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 03:01:40 2022 +0000
URL: https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=62563295
Makefile: simplify /sbin symlink for usrmerge
This matches the layout produced by sys-apps/merge-usr.
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index a61e828b..e0266d2a 100644
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,7 @@ ifeq ($(OS),Linux)
rm -fr ${DESTDIR}/sbin
rm -fr ${DESTDIR}/usr/sbin
ln -snf usr/bin ${DESTDIR}/bin
- ln -snf usr/sbin ${DESTDIR}/sbin
+ ln -snf usr/bin ${DESTDIR}/sbin
ln -snf bin ${DESTDIR}/usr/sbin
endif