Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Dec 2018 07:59:38 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r488074 - head/science/drawxtl/files
Message-ID:  <201812220759.wBM7xc2l076212@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Dec 22 07:59:38 2018
New Revision: 488074
URL: https://svnweb.freebsd.org/changeset/ports/488074

Log:
  science/drawxtl: Unbreak on non-64-bit architectures
  
  The previous patch of libdir assignment only affected 64-bit architectures.
  
  Reported by:	fallout

Modified:
  head/science/drawxtl/files/patch-Makefile

Modified: head/science/drawxtl/files/patch-Makefile
==============================================================================
--- head/science/drawxtl/files/patch-Makefile	Sat Dec 22 07:54:36 2018	(r488073)
+++ head/science/drawxtl/files/patch-Makefile	Sat Dec 22 07:59:38 2018	(r488074)
@@ -1,6 +1,11 @@
 --- Makefile.orig	2011-03-08 18:55:26 UTC
 +++ Makefile
-@@ -38,7 +38,7 @@ ifeq ($(OS),Linux)
+@@ -34,11 +34,11 @@ ifeq ($(OS),Linux)
+ 
+   prefix          = /usr/local
+   includedir      = ${prefix}/include
+-  libdir          = /usr/lib/
++  libdir          = ${prefix}/lib/
  
    BUILD_CPU=$(shell uname -m)
    ifneq (,$(findstring 64,$(BUILD_CPU)))



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812220759.wBM7xc2l076212>