File: 0001-use-ocamlmakefile-package.patch

package info (click to toggle)
syslog-ocaml 1.4-6
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 260 kB
  • ctags: 173
  • sloc: ml: 414; makefile: 36; ansic: 26
file content (27 lines) | stat: -rw-r--r-- 591 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From: Eric Cooper <ecc@cmu.edu>
Date: Tue, 3 Mar 2009 16:28:31 -0500
Subject: use ocamlmakefile package


Signed-off-by: Eric Cooper <ecc@cmu.edu>
---
 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 61245a8..948bed5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
--include Makefile.conf
+OCAMLMAKEFILE = /usr/share/ocamlmakefile/OCamlMakefile
 
 SOURCES=syslog.mli syslog.ml
 RESULT=syslog
@@ -13,4 +13,4 @@ install: libinstall
 uninstall: libuninstall
 doc: htdoc
 
--include OCamlMakefile
+include $(OCAMLMAKEFILE)
--