diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2003-07-14 02:37:44 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2003-07-14 02:37:44 +0000 |
commit | 8e775bbe3ac76cb899c9b749314bd42fdf20302d (patch) | |
tree | c2f290a2bd462060addfdd5ce0894c6a53db8dd4 /x11/bbrun/files | |
parent | 3971644de4f32b35be9d9172ace8abbd6593c350 (diff) | |
download | ports-8e775bbe3ac76cb899c9b749314bd42fdf20302d.tar.gz ports-8e775bbe3ac76cb899c9b749314bd42fdf20302d.zip |
Notes
Diffstat (limited to 'x11/bbrun/files')
-rw-r--r-- | x11/bbrun/files/patch-Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/bbrun/files/patch-Makefile b/x11/bbrun/files/patch-Makefile index bffa640c44f0..2b0fd3d7c82e 100644 --- a/x11/bbrun/files/patch-Makefile +++ b/x11/bbrun/files/patch-Makefile @@ -4,8 +4,8 @@ -CC = gcc -LIBS = -lXpm `gtk-config --libs` -CFLAGS = `gtk-config --cflags` -+LIBS = -lXpm `${GTK_CONFIG} --libs` -L${LOCALBASE}/lib -lgnugetopt -+CFLAGS = `${GTK_CONFIG} --cflags` -Wall ++LIBS = -lXpm `${GTK_CONFIG} --libs` ++CFLAGS += `${GTK_CONFIG} --cflags` -Wall OBJS = bbrun.o \ ../wmgeneral/wmgeneral.o \ ../wmgeneral/misc.o \ @@ -17,7 +17,7 @@ bbrun: $(OBJS) - $(CC) -Wall -g -o bbrun $^ $(LIBS) -+ $(CC) -o bbrun $^ $(LIBS) ++ $(CC) -o bbrun $^ $(LDFLAGS) $(LIBS) install: cp bbrun /usr/local/bin/ |