Skip to content

Commit

Permalink
[musl] Correct musl-compatibility.h confusion. JB#49555
Browse files Browse the repository at this point in the history
After renaming temp-failure-retry.h to musl-compatibility.h
some files were left using the previous filename.

Signed-off-by: Simo Piiroinen <simo.piiroinen@jollamobile.com>
  • Loading branch information
spiiroin committed Sep 24, 2020
1 parent 6c9254a commit b65ad9c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions Makefile.custom
Expand Up @@ -394,6 +394,7 @@ CLEAN_HEADERS += modules/isi_conf.h
CLEAN_HEADERS += include/dsme/oom.h
CLEAN_HEADERS += include/dsme/mainloop.h
CLEAN_HEADERS += include/dsme/timers.h
CLEAN_HEADERS += include/dsme/musl-compatibility.h

# Files with whitespace issues

Expand Down
1 change: 0 additions & 1 deletion include/dsme/musl-compatibility.h
Expand Up @@ -7,4 +7,3 @@
} while (_rc == -1 && errno == EINTR); \
_rc; })
#endif

2 changes: 1 addition & 1 deletion modules/abootsettings.c
Expand Up @@ -33,7 +33,7 @@
#include "../include/dsme/logging.h"

#ifndef __GLIBC__
#include "../include/dsme/temp-failure-retry.h"
#include "../include/dsme/musl-compatibility.h"
#endif

#include <dsme/state.h>
Expand Down
2 changes: 1 addition & 1 deletion modules/thermalsensor_generic.c
Expand Up @@ -33,7 +33,7 @@
#include "../include/dsme/logging.h"

#ifndef __GLIBC__
#include "../include/dsme/temp-failure-retry.h"
#include "../include/dsme/musl-compatibility.h"
#endif

#include "dbusproxy.h"
Expand Down
2 changes: 1 addition & 1 deletion modules/validatorlistener.c
Expand Up @@ -37,7 +37,7 @@
#include "../include/dsme/modulebase.h"

#ifndef __GLIBC__
#include "../include/dsme/temp-failure-retry.h"
#include "../include/dsme/musl-compatibility.h"
#endif

#include <string.h>
Expand Down

0 comments on commit b65ad9c

Please sign in to comment.