diff options
author | minskim <minskim> | 2005-05-21 22:35:46 +0000 |
---|---|---|
committer | minskim <minskim> | 2005-05-21 22:35:46 +0000 |
commit | 806689a39e26d4348780cca9249d4fe2b2c32c2d (patch) | |
tree | 4349d972733afd7938979217a71cf879cb9a4222 | |
parent | 997838889b4cee7c562ec17a4d8d76719be83847 (diff) | |
download | pkgsrc-806689a39e26d4348780cca9249d4fe2b2c32c2d.tar.gz |
Do not strip commands on Linux, where some of them are not regular binaries.
-rw-r--r-- | lang/ocaml/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/ocaml/Makefile.common b/lang/ocaml/Makefile.common index 7e24bef1161..5656d7ca9ce 100644 --- a/lang/ocaml/Makefile.common +++ b/lang/ocaml/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2005/04/11 21:46:14 tv Exp $ +# $NetBSD: Makefile.common,v 1.8 2005/05/21 22:35:46 minskim Exp $ DISTNAME= ocaml-3.08.3 CATEGORIES= lang @@ -20,7 +20,7 @@ CONFIGURE_ARGS+= -with-pthread .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "Darwin" +.if ${OPSYS} == "Darwin" || ${OPSYS} == "Linux" INSTALL_UNSTRIPPED= yes .endif |