svn commit: r488074 - head/science/drawxtl/files

Yuri Victorovich yuri at FreeBSD.org
Sat Dec 22 07:59:39 UTC 2018


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)))


More information about the svn-ports-all mailing list