Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cduce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
19
Issues
19
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cduce
cduce
Commits
7a406049
Commit
7a406049
authored
Feb 19, 2008
by
Pietro Abate
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Rollback --libdir.
parent
8203e6b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
12 deletions
+6
-12
Make.macos
Make.macos
+3
-2
Makefile.distrib
Makefile.distrib
+3
-6
configure.ml
configure.ml
+0
-4
No files found.
Make.macos
View file @
7a406049
...
...
@@ -5,9 +5,10 @@ include VERSION
package-macosx:
mkdir -p package-macosx/root
mkdir -p package-macosx/root/lib/ocaml
sh configure --prefix=`pwd`/package-macosx/root
make install
export VERSION=$(VERSION) &&
tools/make-package-macosx
OCAMLFIND_DESTDIR=package-macosx/root/lib/ocaml
make install
VERSION=$(VERSION)
tools/make-package-macosx
clean-macosx:
sudo rm -rf package-macosx
...
...
Makefile.distrib
View file @
7a406049
...
...
@@ -20,7 +20,7 @@ PACKAGES = camlp4 ulex pcre num netstring
# Call make with VERBOSE=true to get a trace of commands
VERBOSE
=
fals
e
VERBOSE
=
tru
e
ifneq
($(VERBOSE), true)
HIDE
=
@
...
...
@@ -59,11 +59,8 @@ endif
ifeq
($(INTERFACE), true)
OPT
+=
-passopt
-i
endif
ifeq
($(LIBDIR), false)
OCAMLFIND
=
ocamlfind
else
OCAMLFIND
=
ocamlfind
-destdir
$(LIBDIR)
endif
OCAMLFIND
=
ocamlfind
CAMLC
=
$(OCAMLFIND)
$(CAMLC_P)
$(OPT)
-package
"
$(PACKAGES)
"
CAMLOPT
=
$(OCAMLFIND)
$(CAMLOPT_P)
$(OPT)
-package
"
$(PACKAGES)
"
...
...
configure.ml
View file @
7a406049
...
...
@@ -37,7 +37,6 @@ OCaml/CDuce interface:
Installation directories:
--prefix=PREFIX install files in PREFIX [/usr/local]
--bindir=DIR install user executables in DIR [PREFIX/bin]
--libdir=DIR install man documentation in DIR [ocamlfind printconf destdir]
--mandir=DIR install man documentation in DIR [PREFIX/man]
--docdir=DIR install the rest of the doc in DIR [PREFIX/doc/cduce]
"
;
...
...
@@ -62,7 +61,6 @@ let features =
let
vars
=
[
"prefix"
,
ref
"/usr/local"
;
"bindir"
,
ref
""
;
"libdir"
,
ref
""
;
"mandir"
,
ref
""
;
"docdir"
,
ref
""
;
...
...
@@ -218,7 +216,6 @@ let pxp_wlex = check_feature "pxp_wlex" (check_pkg "pxp-wlex-utf8")
let
prefix
=
dir
"prefix"
let
bindir
=
dir
~
def
:
(
prefix
^
"/bin"
)
"bindir"
let
mandir
=
dir
~
def
:
(
prefix
^
"/man"
)
"mandir"
let
libdir
=
dir
~
def
:
(
"false"
)
"libdir"
let
docdir
=
dir
~
def
:
(
prefix
^
"/doc/cduce"
)
"docdir"
let
wprefix
=
dir
"wprefix"
let
cgidir
=
dir
~
def
:
(
wprefix
^
"/cgi-bin"
)
"cgidir"
...
...
@@ -294,7 +291,6 @@ let () =
fprintf
out
"CGI=%b
\n
"
cgi
;
fprintf
out
"PXP_WLEX=%b
\n
"
pxp_wlex
;
fprintf
out
"BINDIR=%s
\n
"
bindir
;
fprintf
out
"LIBDIR=%s
\n
"
libdir
;
fprintf
out
"MANDIR=%s
\n
"
mandir
;
fprintf
out
"DOCDIR=%s
\n
"
docdir
;
fprintf
out
"CGI_DIR=%s
\n
"
cgidir
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment