Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
mwilck committed Nov 21, 2023
2 parents ca2f495 + 6bb7330 commit 5f857af
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ prefix :=
# Prefix for binaries
exec_prefix := $(prefix)
# Prefix for non-essential libraries (libdmmp)
usr_prefix := $(prefix)
usr_prefix := $(if $(prefix),$(prefix),/usr)
# Prefix for configfuration files (multipath.conf)
etc_prefix := $(prefix)
# Where to install systemd-related files. systemd is usually installed under /usr
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ The following variables can be passed to the `make` command line:
"Usr-merged" distributions[^systemd] may want to set this to `/usr`. The
default is empty (`""`).
* `usr_prefix`: where to install those parts of the code that aren't necessary
for booting. Non-usr-merged distributions[^systemd] may want to set this to
`/usr`. The default is `$(prefix)`.
for booting. The default is `/usr` if `$(prefix)` is empty, and `$(prefix)` otherwise.
* `systemd_prefix`: Prefix for systemd-related files[^systemd]. The default is `/usr`.
* `etc_prefix`: The prefix for configuration files. "usr-merged"
distributions with immutable `/usr`[^systemd] may want to set this to
Expand Down
4 changes: 2 additions & 2 deletions libmultipath/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
#ifndef _VERSION_H
#define _VERSION_H

#define VERSION_CODE 0x000906
#define VERSION_CODE 0x000907
/* MMDDYY, in hex */
#define DATE_CODE 0x070517
#define DATE_CODE 0x0B1017

#define PROG "multipath-tools"

Expand Down

0 comments on commit 5f857af

Please sign in to comment.