aboutsummaryrefslogtreecommitdiff
path: root/graphics/ruby-edje/files/patch-Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/ruby-edje/files/patch-Rakefile')
-rw-r--r--graphics/ruby-edje/files/patch-Rakefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/graphics/ruby-edje/files/patch-Rakefile b/graphics/ruby-edje/files/patch-Rakefile
deleted file mode 100644
index deb297174636..000000000000
--- a/graphics/ruby-edje/files/patch-Rakefile
+++ /dev/null
@@ -1,18 +0,0 @@
---- Rakefile.orig Tue May 16 11:23:21 2006
-+++ Rakefile Sat Jun 24 22:14:48 2006
-@@ -16,13 +16,13 @@
- task :default => [ext_lib.so]
-
- file ext_lib.so => ext_lib.objects do |t|
-- sh "cc #{ext_lib.ldflags} -shared -Wl " +
-+ sh "cc #{ext_lib.ldflags} -L%%X11BASE%%/lib -shared -Wl " +
- " #{t.prerequisites.join(" ")} -o #{t.name}"
- end
-
- ext_lib.objects.each do |object|
- file object => object.sub(/\.[^.]+$/, ".c") do |t|
-- sh "cc #{ext_lib.cflags} #{t.prerequisites.first} " +
-+ sh "cc #{ext_lib.cflags} -I%%X11BASE%%/include #{t.prerequisites.first} " +
- "-c -o #{t.name}"
- end
- end