Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jberryman
GHC
Commits
bc0eeca8
Commit
bc0eeca8
authored
Mar 08, 2005
by
simonmar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[project @ 2005-03-08 11:56:55 by simonmar]
Allow for optional binary installation
parent
460af126
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
Makefile
Makefile
+1
-0
distrib/Makefile-bin.in
distrib/Makefile-bin.in
+3
-0
No files found.
Makefile
View file @
bc0eeca8
...
...
@@ -269,6 +269,7 @@ binary-dist::
echo
"PACKAGE_LIB_PRL_SCRIPTS =
$
(
$(Project)
BinDistLibPrlScripts)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_LIB_SPLICED_FILES =
$
(
$(Project)
BinDistLibSplicedFiles)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_BINS =
$
(
$(Project)
BinDistBins)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_OPT_BINS =
$
(
$(Project)
BinDistOptBins)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_LINKS =
$
(
$(Project)
BinDistLinks)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
cat
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile-bin.in
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
@
echo
"Generating a shippable configure script.."
...
...
distrib/Makefile-bin.in
View file @
bc0eeca8
...
...
@@ -223,6 +223,9 @@ install-bin:
for i in $(PACKAGE_BINS) ""; do \
if test -n "$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \
done;
for i in $(PACKAGE_OPT_BINS) ""; do \
if test -n "$$i" -a ! -e "$(bindir)/$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \
done;
@for i in $(VERSION_SYMLINKS_FOR) ""; do \
if [ "x$$i" != "x" ]; then \
( cd $(bindir); \
...
...
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