Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
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
Esteban Blanc
proview
Commits
3f0f3e78
Commit
3f0f3e78
authored
May 13, 2009
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Command 'source' changed to '.', source didn't work on ubuntu
parent
125bf467
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/lib/co/src/co_rtmon.cpp
src/lib/co/src/co_rtmon.cpp
+1
-1
wb/lib/wb/src/wb_pkg.cpp
wb/lib/wb/src/wb_pkg.cpp
+2
-2
No files found.
src/lib/co/src/co_rtmon.cpp
View file @
3f0f3e78
...
@@ -101,7 +101,7 @@ void RtMon::stop_ok_cb( void *ctx, void *data)
...
@@ -101,7 +101,7 @@ void RtMon::stop_ok_cb( void *ctx, void *data)
void
RtMon
::
activate_reset
()
void
RtMon
::
activate_reset
()
{
{
char
cmd
[]
=
"
source
pwr_stop.sh"
;
char
cmd
[]
=
"
.
pwr_stop.sh"
;
system
(
cmd
);
system
(
cmd
);
}
}
...
...
wb/lib/wb/src/wb_pkg.cpp
View file @
3f0f3e78
...
@@ -557,7 +557,7 @@ void pkg_node::fetchFiles( bool distribute)
...
@@ -557,7 +557,7 @@ void pkg_node::fetchFiles( bool distribute)
// Execute the pack file
// Execute the pack file
char
cmd
[
200
];
char
cmd
[
200
];
sprintf
(
cmd
,
"
source
%s"
,
pack_fname
);
sprintf
(
cmd
,
"
.
%s"
,
pack_fname
);
system
(
cmd
);
system
(
cmd
);
if
(
distribute
)
{
if
(
distribute
)
{
...
@@ -614,7 +614,7 @@ void pkg_node::copyPackage( char *pkg_name)
...
@@ -614,7 +614,7 @@ void pkg_node::copyPackage( char *pkg_name)
// Execute the pack file
// Execute the pack file
char
cmd
[
200
];
char
cmd
[
200
];
sprintf
(
cmd
,
"
source
%s"
,
pack_fname
);
sprintf
(
cmd
,
"
.
%s"
,
pack_fname
);
system
(
cmd
);
system
(
cmd
);
}
}
}
}
...
...
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