summaryrefslogtreecommitdiff
path: root/dev-ml/cairo-ocaml/files/0002-Fix-Makefile-to-avoid-recompiling-files-in-usr.patch
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-04-25 13:49:43 +0200
committerDavid Seifert <soap@gentoo.org>2021-04-25 13:49:43 +0200
commita1c7d4086d97ac0dcf6bc6f80a8b32384b3a5297 (patch)
treeae720ca5039bfde98399bcc7eeafa7bc1e6413e1 /dev-ml/cairo-ocaml/files/0002-Fix-Makefile-to-avoid-recompiling-files-in-usr.patch
parent37f530389959db0eb6c2df1fc36692e2e6725769 (diff)
downloadgentoo-a1c7d4086d97ac0dcf6bc6f80a8b32384b3a5297.tar.gz
gentoo-a1c7d4086d97ac0dcf6bc6f80a8b32384b3a5297.tar.bz2
gentoo-a1c7d4086d97ac0dcf6bc6f80a8b32384b3a5297.zip
dev-ml/cairo-ocaml: Remove last-rited pkg
Closes: https://bugs.gentoo.org/557538 Closes: https://bugs.gentoo.org/769326 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-ml/cairo-ocaml/files/0002-Fix-Makefile-to-avoid-recompiling-files-in-usr.patch')
-rw-r--r--dev-ml/cairo-ocaml/files/0002-Fix-Makefile-to-avoid-recompiling-files-in-usr.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-ml/cairo-ocaml/files/0002-Fix-Makefile-to-avoid-recompiling-files-in-usr.patch b/dev-ml/cairo-ocaml/files/0002-Fix-Makefile-to-avoid-recompiling-files-in-usr.patch
deleted file mode 100644
index fcb0f0583227..000000000000
--- a/dev-ml/cairo-ocaml/files/0002-Fix-Makefile-to-avoid-recompiling-files-in-usr.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From: Stephane Glondu <steph@glondu.net>
-Date: Tue, 2 Aug 2011 15:34:21 +0200
-Subject: Fix Makefile to avoid recompiling files in /usr
-
-The "-I /path/to/lablgtk2" option should not be used when calling
-ocamldep, otherwise files there are considered as possible targets by
-the build system.
-
-Signed-off-by: Stephane Glondu <steph@glondu.net>
----
- src/Makefile | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/src/Makefile b/src/Makefile
-index 46a62f6..c9c64b7 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -117,7 +117,7 @@ clean :
-
- .depend : $(wildcard *.ml *.mli)
- @echo "making deps"
-- @$(OCAMLDEP) $(if $(LABLGTKDIR),-I $(LABLGTKDIR)) $^ > $@
-+ @$(OCAMLDEP) $^ > $@
-
- -include .depend
- -include .depend_c
---