Skip to content

Commit

Permalink
biology/migrate: Fix extract
Browse files Browse the repository at this point in the history
Extract fails on aarch64 with error:
(sample)
"dynsections.js: Cannot restore extended attributes:
com.apple.quarantine com.apple.quarantine: No such file or directory"
tar: Error exit delayed from previous errors.-

Fix extract with: --no-same-owner --no-same-permissions
  • Loading branch information
nunotexbsd committed Mar 27, 2024
1 parent c492a5b commit dc29da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biology/migrate/Makefile
Expand Up @@ -23,7 +23,7 @@ MAKE_ARGS= PRETTYCFLAGS="${CFLAGS} -DNOJPEG -DNOZLIB -DNOPNG -Iharu -DPRETTY -ls

CONFLICTS_INSTALL= py*-sqlalchemy-migrate # bin/migrate

EXTRACT_AFTER_ARGS= --exclude zlib
EXTRACT_AFTER_ARGS= --no-same-owner --no-same-permissions --exclude zlib
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src

PORTDOCS= ${PORTNAME}.html HISTORY README README_PARALLEL_GENERAL
Expand Down

0 comments on commit dc29da5

Please sign in to comment.