Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dsniff
Manage
Activity
Members
Labels
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
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
Debian Security Tools Packaging Team
dsniff
Commits
fb38121a
Commit
fb38121a
authored
4 years ago
by
Marcos Fouces
Browse files
Options
Downloads
Patches
Plain Diff
Add 37_fix-lib-and-share-dirs.patch (Closes: #919631).
parent
d16b2425
No related branches found
Branches containing commit
Tags
debian/3.0.4+dfsg-2
Tags containing commit
No related merge requests found
Pipeline
#129017
failed
4 years ago
Stage: build
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+1
-0
1 addition, 0 deletions
debian/changelog
debian/patches/37_fix-lib-and-share-dirs.patch
+34
-0
34 additions, 0 deletions
debian/patches/37_fix-lib-and-share-dirs.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
36 additions
and
0 deletions
debian/changelog
+
1
−
0
View file @
fb38121a
...
...
@@ -13,6 +13,7 @@ dsniff (2.4b1+debian-30) UNRELEASED; urgency=medium
* Bump to debhelper-compat 12.
* Add Rules-Requires-Root: no in control file.
* Bump to Standards-Version 4.5.0
* Add 37_fix-lib-and-share-dirs.patch (Closes: #919631).
-- Marcos Fouces <marcos.fouces@gmail.com> Thu, 23 Apr 2020 10:18:57 +0200
...
...
This diff is collapsed.
Click to expand it.
debian/patches/37_fix-lib-and-share-dirs.patch
0 → 100644
+
34
−
0
View file @
fb38121a
Description: Fix directory location for data files. They were wrongly set to lib dirs.
Author: Hank Leininger <hlein@korelogic.com>
--- a/Makefile.in
+++ b/Makefile.in
@@ -11,12 +11,12 @@
install_prefix =
prefix = @prefix@
exec_prefix = @exec_prefix@
-libdir = @libdir@
+sharedir = $(prefix)/share/dsniff
sbindir = @sbindir@
mandir = @mandir@
CC = @CC@
-CFLAGS = @CFLAGS@ -DDSNIFF_LIBDIR=\"$(libdir)/\"
+CFLAGS = @CFLAGS@ -DDSNIFF_LIBDIR=\"$(sharedir)/\"
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
@@ -157,10 +157,10 @@
for file in $(PROGS); do \
$(INSTALL_PROGRAM) -m 755 $$file $(install_prefix)$(sbindir); \
done
- test -d $(install_prefix)$(libdir) || \
- $(INSTALL) -d $(install_prefix)$(libdir)
+ test -d $(install_prefix)$(sharedir) || \
+ $(INSTALL) -d $(install_prefix)$(sharedir)
for file in $(CONFIGS); do \
- $(INSTALL_DATA) $$file $(install_prefix)$(libdir); \
+ $(INSTALL_DATA) $$file $(install_prefix)$(sharedir); \
done
test -d $(install_prefix)$(mandir)/man8 || \
$(INSTALL) -d $(install_prefix)$(mandir)/man8
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
fb38121a
...
...
@@ -34,3 +34,4 @@
34_fix-parallel-FTBFS.patch
35_Add_CPPFLAGS.patch
36_implicit_declarations.patch
37_fix-lib-and-share-dirs.patch
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