From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua0-f177.google.com (mail-ua0-f177.google.com [209.85.217.177]) by dpdk.org (Postfix) with ESMTP id 312752B84 for ; Wed, 5 Oct 2016 16:32:51 +0200 (CEST) Received: by mail-ua0-f177.google.com with SMTP id p25so91105260uaa.1 for ; Wed, 05 Oct 2016 07:32:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=edmonton.ca; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=ztSFlSNYyRL3uDipuTslGUHVU5E6qdna5r07JMqA3jM=; b=LAEPLW3PzjO7ymKCOAlmxsf0sd6AyEE+zoFUjkpMrksvzSB8iKg864tOEbUI/MkjXX HpMog0On15ZBbg6FDAiZbFdthSV60x5pcNH9J46qODvuVZAy0p8jEaFk3N8BhVzPAXSi 4joj2t3VVQXFZQNgeTYRCiAnziSPV5N0vmaVU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=ztSFlSNYyRL3uDipuTslGUHVU5E6qdna5r07JMqA3jM=; b=MogCIV/7pVjnZBzm3rPTeIowWzuw69aUjU/ZC1AD8ts6Gk+0GKygIzoU04isT4mT4p +JLPyYGccl9Si9dNZJepxx4rq0+4c6UG8TmyQNXILSItQH5MzSQ29NuLn3NlnffqsNmG fDLxuLAD3G7fZAPp4RIh0gpsdULYaksp3SQjhrTZw1vuxYmyAPpaYrixenbxGCeR+7FJ dkqhaAGzS+9aurZOLNKD45dVXZmPj2O3PuKWt6gx4tcvldVn+0Gx8+7aORUcTVUSyw0n wGnX5SNZxO02xtBLYgQPtPBt4KzKgA9h87GllgxW1+fNZBRQn/8x0ynqLc1QDq5YcRjj dfxw== X-Gm-Message-State: AA6/9Rnk3oF03I83bEYCejmqPEtna6V60IL4k8nlxnQZSmjt3jFjdWcESrhtzMR11F7vv4EBbRZejZAWm+IaVhZt X-Received: by 10.176.1.100 with SMTP id 91mr6946244uak.30.1475677970595; Wed, 05 Oct 2016 07:32:50 -0700 (PDT) MIME-Version: 1.0 Received: by 10.31.106.135 with HTTP; Wed, 5 Oct 2016 07:32:08 -0700 (PDT) In-Reply-To: <1489902.QG88RjLba8@xps13> References: <1489902.QG88RjLba8@xps13> From: Aly Dharshi Date: Wed, 5 Oct 2016 08:32:08 -0600 Message-ID: To: Thomas Monjalon Cc: users@dpdk.org Content-Type: text/plain; charset=UTF-8 Subject: Re: [dpdk-users] Sphinx Errors on CentOS 7 X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Oct 2016 14:32:51 -0000 Figured it out, also have to comment out: #%files doc #%doc %{_docdir}/dpdk This allowed the rpm to build successfully ! Thanks. Cheers, ASD. --- Aly Dharshi B.Sc. RHCE. LRT Communications Design Specialist Engineering & Maintenance City Operations | Edmonton Transit System 780.496.2869 telephone 780.619.1595 mobile City Of Edmonton DL MacDonald Transit Yards ROW Building 13304 50A Street Edmonton AB T5A 4P6 All information contained in this email post is proprietary to the City of Edmonton, confidential and intended only for the addressed recipient. If you have received this post in error, please disregard the contents, inform the sender of the misdirection, and remove it from your system. The copying, dissemination or distribution of this email, if misdirected, is strictly prohibited. On Wed, Oct 5, 2016 at 8:18 AM, Thomas Monjalon wrote: > 2016-10-05 08:09, Aly Dharshi: >> Hello DPDK Users, >> >> I am building an rpm set using the bundled SPEC file. Everything >> compiles fine except the sphinx part: > [...] >> I've had to do this in the spec file to generate the build: >> >> BuildRequires: kernel-devel, kernel-headers, libpcap-devel, xen-devel >> BuildRequires: doxygen, python-sphinx, inkscape >> #BuildRequires: texlive-collection-latexextra >> >> This is because it seems that texlive-collection-latexextra does not >> exist on CentOS 7.2. Is there anyway to proceed: >> >> 1. How do I resolve the sphinx error ? > > It is really hard to know what's going wrong with PDF generation. > You can try "make doc V=1" > >> 2. Can I simply build this kit without docs ? > > Yes you can remove the line "make O=%{target} doc" from the spec file. >