diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2002-06-18 04:35:56 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2002-06-18 04:35:56 +0000 |
commit | 9907704562ceba1a065c7e1e60f29bf6b495fc98 (patch) | |
tree | c99655c18cd5ebeb4fb62cec11a61104d404db96 | |
parent | Use the appropriate `dd' incantation, and remove the dependency on PERL. (diff) |
Unbreak this port by patching the Makefile to use bmake syntax rather
than GNU make syntax. Depending on gmake would have been overkill
in comparison to how simple the patch was, IMO.
Diffstat (limited to '')
-rw-r--r-- | x11-fonts/xfontselector/files/patch-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-fonts/xfontselector/files/patch-Makefile b/x11-fonts/xfontselector/files/patch-Makefile new file mode 100644 index 000000000000..b8890b18c218 --- /dev/null +++ b/x11-fonts/xfontselector/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig Mon Jun 17 22:21:50 2002 ++++ Makefile Mon Jun 17 22:22:01 2002 +@@ -16,7 +16,7 @@ + + + xfontselector: xfontselector.o moc_xfontselector.o +- $(CXX) $(LFLAGS) -o $@ $^ $(LIBS) ++ $(CXX) $(LFLAGS) -o $@ $> $(LIBS) + strip $@ + + xfontselector.o: xfontselector.cpp xfontselector.h |