From 2257a8591d65c180c57705e09ce7b99df8fb3da7 Mon Sep 17 00:00:00 2001 From: "J. Peter Mugaas" Date: Fri, 20 May 2016 04:06:50 -0400 Subject: [PATCH] jsoncpp 1.7.2 use mkdir -p instead of mkdir Use mkdir -p instead of mkdir so that the package does not fail if the dir exists. --- jsoncpp/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsoncpp/PKGBUILD b/jsoncpp/PKGBUILD index 1f502e61..cdffcfa2 100644 --- a/jsoncpp/PKGBUILD +++ b/jsoncpp/PKGBUILD @@ -2,7 +2,7 @@ pkgname="jsoncpp" pkgver=1.7.2 -pkgrel=2 +pkgrel=3 pkgdesc="A C++ library for interacting with JSON" arch=('any') url="https://github.com/open-source-parsers/jsoncpp" @@ -20,7 +20,7 @@ prepare() { } build() { - mkdir "${srcdir}/build-${CARCH}" + mkdir -p "${srcdir}/build-${CARCH}" cd "${srcdir}/build-${CARCH}" cmake \