From 9de0b4396bdb02cc2a34490d045789d586f541a8 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 4 Sep 2014 01:30:05 -0300 Subject: [PATCH] solidify/Makefile (LDFLAGS): rename to LDLIBS The obsolete use of LDFLAGS for libraries caused the build to fail. --- solidify/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/solidify/Makefile b/solidify/Makefile index 9fd526d..7533052 100644 --- a/solidify/Makefile +++ b/solidify/Makefile @@ -1,8 +1,8 @@ # # Makefile - Makefile of solidify # -# Written 2010 by Werner Almesberger -# Copyright 2010 by Werner Almesberger +# Written 2010, 2014 by Werner Almesberger +# Copyright 2010, 2014 by Werner Almesberger # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,7 +19,8 @@ CFLAGS_WARN = -Wall -Wshadow -Wmissing-prototypes \ -Wmissing-declarations -Wno-format-zero-length CFLAGS = $(CFLAGS_WARN) -g -O9 `pkg-config --cflags gtk+-2.0` -LDFLAGS = -lm `pkg-config --libs gtk+-2.0` +LDFLAGS = +LDLIBS = -lm `pkg-config --libs gtk+-2.0` # ----- Verbosity control -----------------------------------------------------