X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-la0-f68.google.com (mail-la0-f68.google.com [209.85.215.68]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 121D7DC626E for ; Tue, 21 Oct 2014 08:50:41 +0000 (UTC) Received: by mail-la0-f68.google.com with SMTP id s18so171280lam.11 for ; Tue, 21 Oct 2014 01:50:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=ahG9k2uEZ/yt3dIgnUbVmRsEWLNW9TZBoOoecNpWQS0=; b=Ic50J67085r/IAJeesBKZzEYDdsObqMd/CmeLOqJK7Mm6binDeVVBo/aQJZWwbdbc+ 5oBbwhGlwXTze1zYF3gKI6AcGrD3M9z05ryvmbNrtlmFHRzVeZiH1losWrrvnJoW14Jj VBACtzCH+EGSJ7lqKSciBH6ELcwhKFQ5pkzRWFXqga+gOXxKlWGpQiFUn51q5dgP4QJP rWvUhhgmL93k3NSREqzmSn8qzsmjL/AfLOkmGXlY2aI50lFrA6SiG8GdxRfjGDGvYmO5 DBAhCjmtqbEi+f/z/G2SmA3wj6RGWs1WhBL+KJUYpsunomeShqArRiW3zLAe8hTU7iIo R51A== X-Received: by 10.152.120.73 with SMTP id la9mr33053970lab.23.1413881439940; Tue, 21 Oct 2014 01:50:39 -0700 (PDT) Received: from alpine-dev.resnet.local ([80.64.106.118]) by mx.google.com with ESMTPSA id t6sm4265504lbb.23.2014.10.21.01.50.38 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 21 Oct 2014 01:50:39 -0700 (PDT) From: k0r10n To: alpine-devel@lists.alpinelinux.org Cc: k0r10n Subject: [alpine-devel] [PATCH] testing/kde-runtime: Fix creating link of kdesu Date: Tue, 21 Oct 2014 12:50:33 +0400 Message-Id: <1413881433-23825-1-git-send-email-k0r10n.dev@gmail.com> X-Mailer: git-send-email 2.0.0 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/kde-runtime/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/kde-runtime/APKBUILD b/testing/kde-runtime/APKBUILD index 86e75bb..f39131d 100644 --- a/testing/kde-runtime/APKBUILD +++ b/testing/kde-runtime/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=kde-runtime pkgver=4.13.3 -pkgrel=0 +pkgrel=1 pkgdesc="KDE base runtime" url="http://www.kde.org/" arch="all" @@ -46,7 +46,7 @@ build() { package() { cd "$_builddir"/build make DESTDIR="$pkgdir" install || return 1 - ln -sfv "$pkgdir"/usr/lib/kde4/libexec/kdesu \ + ln -sfv /usr/lib/kde4/libexec/kdesu \ "$pkgdir"/usr/bin/kdesu || return 1 rm "$pkgdir"/usr/share/icons/hicolor/index.theme || return 1 } -- 2.0.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---