X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qt0-f176.google.com (mail-qt0-f176.google.com [209.85.216.176]) by lists.alpinelinux.org (Postfix) with ESMTP id 8B3D75C46BB for ; Sun, 9 Apr 2017 06:34:50 +0000 (GMT) Received: by mail-qt0-f176.google.com with SMTP id c45so44124053qtb.1 for ; Sat, 08 Apr 2017 23:34:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=flatglobe.org; s=google; h=from:to:subject:date:message-id; bh=g4dSi9ehQQZ7WXodSj8I3M2Qg1aavMzYsnRbnV31PGg=; b=DKAypmUFZl53UukSR/zSdmQYi6N2Vc6zIi6AaeXl0VhOCgmzhDiju7MK6+ElC3vudz 9odEJULGDuuQtKkU8g2QaHTSvJ70G6nwIJwIDXJbRCfvd1VtqCmNRGrS2Hh3zUFzWena shncGQwWOxQnEjay1fHLU9YVzH2ruC5lwMqyE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=g4dSi9ehQQZ7WXodSj8I3M2Qg1aavMzYsnRbnV31PGg=; b=dbj87Yu6QyLH4ij2/QlTVWcdswoDJLbKuFRLE5ZBIu1zeST/+T7qG+raMiilX/wYD+ LpgKNtSb0ew47uWjq58TQGt7Lprmkq+oRlTm+S7AqaxIHW8KqxtjpFC8qH/ZjHALVRwb SoNe3nZsVpx3wf5YoLXdr+Vp4U32CbEEVMuzoUYzZZKS/e9B0LzkxMrdaMSxceuGqFQX dOE7+q5RG3KBo0oY6+Z26+je6+NwXs0SEMY9jxqyd/5NM7q8L3G0LoybQRPU+PLYyMQM 1HEvni81EpKydzhm7WuuzOzq9I2P4mMHdlpXvkIUX6DHuiPC3xVeCDiCh/ADQf48/wGn VuJg== X-Gm-Message-State: AFeK/H28dig9uPLoiKiS+o04Y4Sm57jfDpuiGYm4DNFiN0vDZWFFuQnJ8e/GIfy3T4tQlA== X-Received: by 10.200.51.19 with SMTP id t19mr47333351qta.242.1491719689973; Sat, 08 Apr 2017 23:34:49 -0700 (PDT) Received: from localhost.localdomain (cpe-204-210-151-44.hvc.res.rr.com. [204.210.151.44]) by smtp.gmail.com with ESMTPSA id z42sm6419482qtb.20.2017.04.08.23.34.48 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 08 Apr 2017 23:34:48 -0700 (PDT) From: "Tuan M. Hoang" To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/razor: race condition in s390x Date: Sun, 9 Apr 2017 02:34:14 -0400 Message-Id: <1491719654-16146-1-git-send-email-tmhoang@flatglobe.org> X-Mailer: git-send-email 2.1.4 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Files in blib/man5/ are touch before the directory is created --- main/razor/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/razor/APKBUILD b/main/razor/APKBUILD index f84a0248..3ecd360d 100644 --- a/main/razor/APKBUILD +++ b/main/razor/APKBUILD @@ -19,7 +19,7 @@ build() { cd "$srcdir/$_realname-$pkgver" PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 - make || return 1 + make -j1 || return 1 } package() { -- 2.12.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---