File: install-byte

package info (click to toggle)
ocaml-gnuplot 0.8.3-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 368 kB
  • ctags: 522
  • sloc: ml: 2,147; makefile: 185
file content (19 lines) | stat: -rw-r--r-- 699 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Author: Ralf Treinen <treinen@debian.org>
Debian-bug: #663172
Description: the install target must depend only on the files that are to be
  installed and not on the "all" target, otherwise "make install" will fail
  when ocaml does not compile to native code.

Index: ocaml-gnuplot/Makefile
===================================================================
--- ocaml-gnuplot.orig/Makefile	2012-03-10 12:05:00.000000000 +0100
+++ ocaml-gnuplot/Makefile	2012-03-10 12:08:01.000000000 +0100
@@ -72,7 +72,7 @@
 
 # Installation
 .PHONY: install
-install: META all
+install: META $(INSTALL_FILES)
 	$(OCAMLFIND) install -destdir $(DESTDIR)/usr/lib/ocaml $(PKGNAME) META $(INSTALL_FILES)
 
 uninstall: