Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
senf
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
wiback
senf
Commits
9c4201a1
Commit
9c4201a1
authored
17 years ago
by
g0dil
Browse files
Options
Downloads
Patches
Plain Diff
Fix 'scons clean' dependencies
parent
f298e4ff
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
debian/control
+1
-1
1 addition, 1 deletion
debian/control
debian/rules
+2
-0
2 additions, 0 deletions
debian/rules
senfscons/Doxygen.py
+3
-1
3 additions, 1 deletion
senfscons/Doxygen.py
senfscons/SENFSCons.py
+3
-0
3 additions, 0 deletions
senfscons/SENFSCons.py
with
9 additions
and
2 deletions
debian/control
+
1
−
1
View file @
9c4201a1
...
@@ -3,7 +3,7 @@ Priority: extra
...
@@ -3,7 +3,7 @@ Priority: extra
Maintainer: Stefan Bund <senf-dev@lists.berlios.de>
Maintainer: Stefan Bund <senf-dev@lists.berlios.de>
Build-Depends: debhelper (>= 5), scons, binutils-dev, libboost-dev,
Build-Depends: debhelper (>= 5), scons, binutils-dev, libboost-dev,
libboost-test-dev, libboost-date-time-dev, libboost-regex-dev,
libboost-test-dev, libboost-date-time-dev, libboost-regex-dev,
doxygen, dia, tidy, xsltproc, graphviz, perl-base
doxygen, dia, tidy, xsltproc, graphviz, perl-base
, linklint
Standards-Version: 3.7.2
Standards-Version: 3.7.2
Section: libs
Section: libs
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
2
−
0
View file @
9c4201a1
...
@@ -52,6 +52,8 @@ build-stamp: configure-stamp
...
@@ -52,6 +52,8 @@ build-stamp: configure-stamp
dh_testdir
dh_testdir
# # Add here commands to compile the package.
# # Add here commands to compile the package.
scons
-j
$(CONCURRENCY_LEVEL)
default
all_docs
final
=
1
scons
-j
$(CONCURRENCY_LEVEL)
default
all_docs
final
=
1
scons
linklint
scons
fixlinks
touch
$@
touch
$@
clean
:
clean
:
...
...
This diff is collapsed.
Click to expand it.
senfscons/Doxygen.py
+
3
−
1
View file @
9c4201a1
...
@@ -343,7 +343,9 @@ def DoxyEmitter(source, target, env):
...
@@ -343,7 +343,9 @@ def DoxyEmitter(source, target, env):
out_dir
=
data
[
"
OUTPUT_DIRECTORY
"
]
out_dir
=
data
[
"
OUTPUT_DIRECTORY
"
]
dir
=
env
.
Dir
(
os
.
path
.
join
(
source
[
0
].
dir
.
abspath
,
out_dir
)
)
dir
=
env
.
Dir
(
os
.
path
.
join
(
source
[
0
].
dir
.
abspath
,
out_dir
)
)
dir
.
sources
=
source
dir
.
sources
=
source
if
env
.
GetOption
(
'
clean
'
):
targets
.
append
(
dir
)
if
env
.
GetOption
(
'
clean
'
):
targets
.
append
(
dir
)
return
(
targets
,
source
)
else
:
else
:
out_dir
=
'
.
'
out_dir
=
'
.
'
...
...
This diff is collapsed.
Click to expand it.
senfscons/SENFSCons.py
+
3
−
0
View file @
9c4201a1
...
@@ -350,6 +350,9 @@ def Objects(env, sources, testSources = None, LIBS = [], OBJECTS = []):
...
@@ -350,6 +350,9 @@ def Objects(env, sources, testSources = None, LIBS = [], OBJECTS = []):
return
objects
return
objects
def
InstallIncludeFiles
(
env
,
files
):
def
InstallIncludeFiles
(
env
,
files
):
# Hrmpf ... why do I need this in 0.97??
if
env
.
GetOption
(
'
clean
'
):
return
target
=
env
.
Dir
(
env
[
'
INCLUDEINSTALLDIR
'
])
target
=
env
.
Dir
(
env
[
'
INCLUDEINSTALLDIR
'
])
base
=
env
.
Dir
(
env
[
'
INSTALL_BASE
'
])
base
=
env
.
Dir
(
env
[
'
INSTALL_BASE
'
])
for
f
in
files
:
for
f
in
files
:
...
...
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