diff options
author | knu <knu@FreeBSD.org> | 2002-11-28 01:14:23 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-11-28 01:14:23 +0800 |
commit | a73d9ee9a90d3ca67330c1aeccf6aeac37add65b (patch) | |
tree | d34ef87454baf566bb4ca1ae96622aaec4b31cfc /lang/ruby-devel | |
parent | 18ef3b708735412af9c4abfc4d1ff2308082f658 (diff) | |
download | freebsd-ports-gnome-a73d9ee9a90d3ca67330c1aeccf6aeac37add65b.tar.gz freebsd-ports-gnome-a73d9ee9a90d3ca67330c1aeccf6aeac37add65b.tar.zst freebsd-ports-gnome-a73d9ee9a90d3ca67330c1aeccf6aeac37add65b.zip |
Fix the build of lang/ruby_static-devel, i.e. the build of
archiver/ruby-zlib with lang/ruby-devel in the correct way.
The cause of this problem is that FreeBSD's make(1) got a bit too
sensitive about a mixture of `target:' and `target::'.
Diffstat (limited to 'lang/ruby-devel')
-rw-r--r-- | lang/ruby-devel/files/patch-mkmf.rb | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lang/ruby-devel/files/patch-mkmf.rb b/lang/ruby-devel/files/patch-mkmf.rb deleted file mode 100644 index d121d10c8333..000000000000 --- a/lang/ruby-devel/files/patch-mkmf.rb +++ /dev/null @@ -1,33 +0,0 @@ -Index: lib/mkmf.rb -=================================================================== -RCS file: /src/ruby/lib/mkmf.rb,v -retrieving revision 1.116 -diff -u -1 -r1.116 mkmf.rb ---- lib/mkmf.rb 14 Nov 2002 13:51:19 -0000 1.116 -+++ lib/mkmf.rb 22 Nov 2002 12:38:13 -0000 -@@ -688,7 +688,6 @@ - mfile.print %{ --all: $(DLLIB) -+CLEANLIBS = "$(TARGET).{lib,exp,il?,tds,map}" $(DLLIB) -+CLEANOBJS = "*.{#{$OBJEXT},#{$LIBEXT},s[ol],pdb,bak}" - --clean:: -- @$(RM) "$(TARGET).{lib,exp,il?,tds,map}" $(DLLIB) -- @$(RM) "*.{#{$OBJEXT},#{$LIBEXT},s[ol],pdb,bak}" -+all: $(DLLIB) - } -@@ -850,6 +849,6 @@ - CLEANINGS = " --clean:: -- @$(RM) $(CLEANFILES) -+clean: -+ @$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) - --distclean:: clean -+distclean: clean - @$(RM) Makefile extconf.h conftest.* mkmf.log -@@ -857,3 +856,3 @@ - --realclean:: distclean -+realclean: distclean - " |