X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-yi0-f54.google.com (mail-yi0-f54.google.com [209.85.218.54]) by lists.alpinelinux.org (Postfix) with ESMTP id DA8AC1EBFDD for ; Mon, 18 Apr 2011 14:37:59 +0000 (UTC) Received: by yie12 with SMTP id 12so2233534yie.13 for ; Mon, 18 Apr 2011 07:37:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer; bh=TL9HrSvl6lIe9yqL8+ODWN3aVX00zTB5/A7kaEqfLWA=; b=TxfmGL7yoO+RUWWsqdkgTlCdDLkHjWdItMjHQyGDQJURjbHku5HSKOuFCCRpyFtBOM bfmooq959dJ56A89ybIRhGceb/4z/VZ6S7RMG5HxCaqXNwrnR5N4/8GwNyV9Ius28U1U trryWglz+la50iRPhJ7VfMXuMy8jo45pLr+44= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=V5OjGSy7t0y/THiraOOsfojW65d6uy9v3XPUmGUi0xi3TLSdKlDa+o2MgXqpucyGQG vVCzDjxBgOMAQXMIIZ+PT1D7FSKbLEUUG0M/snZbeIJzZuJKBkpWkS0BzXeP3b0itCPs l97Fq3hf/cI+W0QfM1ndcym0D/r8ceRpxDwwA= Received: by 10.236.170.234 with SMTP id p70mr3267958yhl.528.1303137478627; Mon, 18 Apr 2011 07:37:58 -0700 (PDT) Received: from localhost.localdomain (209.250.132.162.tor.pathcom.com [209.250.132.162]) by mx.google.com with ESMTPS id x68sm2296207yhn.57.2011.04.18.07.37.55 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 18 Apr 2011 07:37:56 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH 1/2] main/sendpage: move perl to vendor_perl from site_perl so its in INC Date: Mon, 18 Apr 2011 10:38:14 +0000 Message-Id: <1303123095-24775-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.4.2 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: move perl to vendor_perl --- main/sendpage/APKBUILD | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main/sendpage/APKBUILD b/main/sendpage/APKBUILD index 4fa3e3f..7e345a6 100644 --- a/main/sendpage/APKBUILD +++ b/main/sendpage/APKBUILD @@ -2,7 +2,7 @@ pkgname=sendpage pkgver=1.0.3 _pkgver=1.000003 -pkgrel=1 +pkgrel=2 pkgdesc="SNPP server, client, queueing engine, modem control and TAP system" url="http://www.sendpage.org" arch="noarch" @@ -29,7 +29,7 @@ build() { cd "$_builddir" perl ./Makefile.PL \ PREFIX="/usr" \ - INSTALLSITELIB="/usr/lib/perl5/site_perl" \ + INSTALLSITELIB="/usr/lib/perl5/vendor_perl" \ || return 1 make || return 1 } -- 1.7.4.2 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---