diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-05-01 10:39:51 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-05-04 21:45:07 +0700 |
commit | 11b7e3832679b5e61f4b3e8f1405b435aaba5951 (patch) | |
tree | b6414f81befddb632323887b33aaf7e9b4a7733a /system/efitools | |
parent | 1ca0ef9d4491db908ef17ba94e3778c08792549b (diff) |
system/efitools: Fix build.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/efitools')
-rw-r--r-- | system/efitools/efitools.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/system/efitools/efitools.SlackBuild b/system/efitools/efitools.SlackBuild index 6670f971bdf58..c00927de6c4d4 100644 --- a/system/efitools/efitools.SlackBuild +++ b/system/efitools/efitools.SlackBuild @@ -43,9 +43,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -129,7 +126,8 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cd $PKG/usr/share/efitools -mv README README_Secure_Boot COPYING $PKG/usr/doc/$PRGNAM-$VERSION +mv README COPYING $PKG/usr/doc/$PRGNAM-$VERSION +cp $CWD/README.Secure_Boot $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |