Skip to content

Commit

Permalink
Merge pull request #19 from h3xx/fix-paths
Browse files Browse the repository at this point in the history
Use system paths from configure options
  • Loading branch information
jpr5 authored Jan 28, 2019
2 parents 9b59468 + 5f49f74 commit 2a9603b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ MANPAGE=ngrep.8
prefix = @prefix@
exec_prefix = @exec_prefix@

bindir = $(prefix)/bin
datadir = $(prefix)/share
mandir = $(datadir)/man
bindir = @bindir@
datadir = @datadir@
mandir = @mandir@

BINDIR_INSTALL = $(prefix)/bin
BINDIR_INSTALL = $(bindir)
MANDIR_INSTALL = $(mandir)/man8

INSTALL = ./install-sh
Expand Down

0 comments on commit 2a9603b

Please sign in to comment.