Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
7b2098ab
Commit
7b2098ab
authored
24 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a few warnings.
Rev: src/pike-module.in:1.5
parent
44ae8c22
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitattributes
+1
-0
1 addition, 0 deletions
.gitattributes
src/pike-module.in
+6
-3
6 additions, 3 deletions
src/pike-module.in
with
7 additions
and
3 deletions
.gitattributes
+
1
−
0
View file @
7b2098ab
...
...
@@ -487,6 +487,7 @@ testfont binary
/src/peep.h foreign_ident
/src/peep.in foreign_ident
/src/peep_t.c foreign_ident
/src/pike-module.in foreign_ident
/src/pike_macros.h foreign_ident
/src/pike_memory.c foreign_ident
/src/pike_memory.h foreign_ident
...
...
This diff is collapsed.
Click to expand it.
src/pike-module.in
+
6
−
3
View file @
7b2098ab
#!pike
// -*- Pike -*-
// $Id: pike-module.in,v 1.5 2000/04/03 14:36:51 grubba Exp $
// Source directory
string srcdir;
...
...
@@ -83,10 +86,10 @@ void run_or_fail(mapping options,string ... cmd)
}
void do_make(string
*
cmd)
void do_make(
array(
string
)
cmd)
{
int tmp1;
string
*
makecmd=(
array(
string
)
makecmd=(
({make})+
Process.split_quoted_string(make_flags)-({""})+
({"PIKE_INCLUDES=-I"+include_path,
...
...
@@ -114,7 +117,7 @@ void do_make(string *cmd)
}
}
int main(int argc, string
*
argv)
int main(int argc,
array(
string
)
argv)
{
foreach(Getopt.find_all_options(argv,aggregate(
({"fixate",Getopt.NO_ARG,({"--fixate"}) }),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment