Fixed entware hash

This commit is contained in:
Vadim Vetrov 2025-01-28 18:57:04 +03:00
parent 91f8210437
commit a03d05ca19
No known key found for this signature in database
GPG Key ID: E8A308689D7A73A5
2 changed files with 4 additions and 1 deletions

View File

@ -328,7 +328,7 @@ jobs:
RELEASE: ${{ needs.prepare.outputs.release }} RELEASE: ${{ needs.prepare.outputs.release }}
SHA: ${{ needs.prepare.outputs.sha }} SHA: ${{ needs.prepare.outputs.sha }}
run: | run: |
sed -i "s/PKG_REV:=.*$/PKG_REV:=$SHA/;s/PKG_VERSION:=.*$/PKG_VERSION:=$VERSION-$RELEASE-$SHA/" youtubeUnblock/Makefile sed -i "s/PKG_REV:=.*$/PKG_REV:=$SHA/;s/PKG_VERSION:=.*$/PKG_VERSION:=$VERSION-$RELEASE-$SHA/" youtubeUnblockEntware/Makefile
- name: Build packages - name: Build packages
id: build id: build

View File

@ -157,7 +157,10 @@ typedef unsigned int uint_t;
#elif defined(__GNUC__) #elif defined(__GNUC__)
int strcasecmp(const char *s1, const char *s2); int strcasecmp(const char *s1, const char *s2);
int strncasecmp(const char *s1, const char *s2, size_t n); int strncasecmp(const char *s1, const char *s2, size_t n);
#if !(_SVID_SOURCE || _BSD_SOURCE || _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE)
char *strtok_r(char *s, const char *delim, char **last); char *strtok_r(char *s, const char *delim, char **last);
#endif
//Tasking compiler? //Tasking compiler?
#elif defined(__TASKING__) #elif defined(__TASKING__)
char *strtok_r(char *s, const char *delim, char **last); char *strtok_r(char *s, const char *delim, char **last);