Skip to content

Commit

Permalink
Try to fix permission error
Browse files Browse the repository at this point in the history
  • Loading branch information
Bond-009 committed May 26, 2024
1 parent cf5d9e5 commit 3f71b26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-build-win64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pushd iconv
iconv_ver="1.17"
iconv_link="https://ftp.gnu.org/pub/gnu/libiconv/libiconv-${iconv_ver}.tar.gz"
wget ${iconv_link} -O iconv.tar.gz
tar xaf iconv.tar.gz
tar --no-overwrite-dir -xaf iconv.tar.gz
pushd libiconv-${iconv_ver}
./configure \
--prefix=${FF_DEPS_PREFIX} \
Expand Down
2 changes: 1 addition & 1 deletion docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ prepare_extra_common() {
iconv_ver="1.17"
iconv_link="https://ftp.gnu.org/pub/gnu/libiconv/libiconv-${iconv_ver}.tar.gz"
wget ${iconv_link} -O iconv.tar.gz
tar xaf iconv.tar.gz
tar --no-overwrite-dir -xaf iconv.tar.gz
pushd libiconv-${iconv_ver}
./configure \
${CROSS_OPT} \
Expand Down

0 comments on commit 3f71b26

Please sign in to comment.