diff options
author | stas <stas@FreeBSD.org> | 2009-06-01 18:14:52 +0800 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2009-06-01 18:14:52 +0800 |
commit | 6af5eb4527405f365063d608e42ef4450c40ca63 (patch) | |
tree | 7d3feab91d1a036432149bd2c3c8a5bd0931605b /cad | |
parent | 0b0a34c16cafe8cd2f48c315a4a905f10d193c29 (diff) | |
download | freebsd-ports-gnome-6af5eb4527405f365063d608e42ef4450c40ca63.tar.gz freebsd-ports-gnome-6af5eb4527405f365063d608e42ef4450c40ca63.tar.zst freebsd-ports-gnome-6af5eb4527405f365063d608e42ef4450c40ca63.zip |
- Make the port localbase-clean.
Reported by: QAT run
Diffstat (limited to 'cad')
-rw-r--r-- | cad/gspiceui/files/patch-src_Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cad/gspiceui/files/patch-src_Makefile b/cad/gspiceui/files/patch-src_Makefile index e53a6a51406b..84389617a6c5 100644 --- a/cad/gspiceui/files/patch-src_Makefile +++ b/cad/gspiceui/files/patch-src_Makefile @@ -5,7 +5,7 @@ # (Arguments can be passed to wx-config to specify the version of wxWidgets to # use, whether unicode is required, etc.) -WXCFG = wx-config --unicode --version=$(GSPICEUI_WXLIB) -+WXCFG = /usr/local/bin/wxgtk2u-2.8-config ++WXCFG = %%WX_CONFIG%% # Dependency file DEPS = Makefile.deps @@ -25,12 +25,12 @@ # Includes -INCLUDES = -I/usr/include -I/usr/X11R6/include -I. -+INCLUDES = -I/usr/include -I${LOCALBASE}/include -I. $(shell /usr/local/bin/wxgtk2u-2.8-config --cxxflags) ++INCLUDES = -I/usr/include -I${LOCALBASE}/include -I. $(shell %%WX_CONFIG%% --cxxflags) # Libraries # (The pkg-config stuff was requested by a user, somehow pangox was missing) -LIBS := $(shell $(WXCFG) --libs) $(shell pkg-config --libs pangox) -+LIBS := $(shell /usr/local/bin/wxgtk2u-2.8-config --libs) $(shell pkg-config --libs pangox) ++LIBS := $(shell %%WX_CONFIG%% --libs) $(shell pkg-config --libs pangox) # Objects OBJS := $(wildcard *.cpp) $(wildcard */*.cpp) $(wildcard */*/*.cpp) |