Mk/Uses/linux.mk: fix rpm extraction
with rpm 4.17, rpm2archive wants to have stdin input to be specified explicitely as "-" and will not assume stdin input automatically if no filename is given. This broke rpm extraction for many linux-c7-* ports.
This commit is contained in:
parent
b53231cc31
commit
c77607965e
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ SRC_DISTFILES?= ${DISTNAME}${SRC_SUFX}:SOURCE
|
|||
.ifdef USE_LINUX_RPM_BAD_PERMS
|
||||
EXTRACT_DEPENDS+= rpm2archive:archivers/rpm4
|
||||
EXTRACT_CMD= rpm2archive
|
||||
EXTRACT_BEFORE_ARGS= <
|
||||
EXTRACT_BEFORE_ARGS= - <
|
||||
EXTRACT_AFTER_ARGS= | ${TAR} xf - --no-same-owner --no-same-permissions
|
||||
.endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue