diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-11-16 09:18:00 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-11-16 09:18:00 +0000 |
commit | 94280db88fbd4296e96b75aa578f94164e42e163 (patch) | |
tree | 12aa0f9ddea61b77754e326ff2fa2695882df9f9 /x11-toolkits | |
parent | Reassign maintainership from ports@FreeBSD.org to Jimmy Olgeni <olgeni@uli.it>. (diff) |
Fix patch-aa (I forgot to update it before committing this port).
Submitted by: bento
Notes
Notes:
svn path=/head/; revision=35181
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/xenostep/files/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-toolkits/xenostep/files/patch-aa b/x11-toolkits/xenostep/files/patch-aa index 1a9a5aa18855..d391eaf3cba8 100644 --- a/x11-toolkits/xenostep/files/patch-aa +++ b/x11-toolkits/xenostep/files/patch-aa @@ -1,5 +1,5 @@ --- Makefile.orig Mon Oct 23 14:21:41 2000 -+++ Makefile Tue Nov 14 10:43:17 2000 ++++ Makefile Thu Nov 16 11:12:35 2000 @@ -4,11 +4,13 @@ # Edit the entries below for your system: # In most cases you don't have to @@ -11,8 +11,8 @@ -CFLAGS = `gtk-config --cflags` -LIBS = `gtk-config --libs` +CC ?= gcc -+_CFLAGS != `$(GTK_CONFIG) --cflags` -+_LIBS != `$(GTK_CONFIG) --libs` ++_CFLAGS != $(GTK_CONFIG) --cflags ++_LIBS != $(GTK_CONFIG) --libs +CFLAGS += $(_CFLAGS) +LIBS += $(_LIBS) |