science/drawxtl: Unbreak on non-64-bit architectures

The previous patch of libdir assignment only affected 64-bit architectures.

Reported by:	fallout
This commit is contained in:
Yuri Victorovich 2018-12-22 07:59:38 +00:00
parent 7a880e46cc
commit 902e01f269
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=488074

View File

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