Skip to content

Commit

Permalink
Remove empty ENV
Browse files Browse the repository at this point in the history
  • Loading branch information
Kawanaao committed Nov 2, 2024
1 parent 79e8cf8 commit e185a45
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app-editors/vscode/vscode-1.94.2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -2358,7 +2358,7 @@ src_prepare() {
einfo "Replacing git dependencies with local tgz files"
pushd "extensions/emmet" > /dev/null || die
sed -i "s|\(\"@emmetio/css-parser\":\s*\).*\(,\)|\1\"file:${DISTDIR}/@emmetio-css-parser-0.4.0.tgz\"\2|" package.json || die
npm install @emmetio/css-parser ${NPM_DEFAULT_FLAGS} --package-lock-only > /dev/null || die
npm install @emmetio/css-parser --package-lock-only > /dev/null || die
popd > /dev/null || die
fi

Expand Down
2 changes: 1 addition & 1 deletion app-editors/vscode/vscode-1.95.0.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -2292,7 +2292,7 @@ src_prepare() {
einfo "Replacing git dependencies with local tgz files"
pushd "extensions/emmet" > /dev/null || die
sed -i "s|\(\"@emmetio/css-parser\":\s*\).*\(,\)|\1\"file:${DISTDIR}/@emmetio-css-parser-0.4.0.tgz\"\2|" package.json || die
npm install @emmetio/css-parser ${NPM_DEFAULT_FLAGS} --package-lock-only > /dev/null || die
npm install @emmetio/css-parser --package-lock-only > /dev/null || die
popd > /dev/null || die
fi

Expand Down
4 changes: 2 additions & 2 deletions app-editors/vscode/vscode-1.95.1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -2293,7 +2293,7 @@ src_prepare() {
einfo "Replacing git dependencies with local tgz files"
pushd "extensions/emmet" > /dev/null || die
sed -i "s|\(\"@emmetio/css-parser\":\s*\).*\(,\)|\1\"file:${DISTDIR}/@emmetio-css-parser-0.4.0.tgz\"\2|" package.json || die
npm install @emmetio/css-parser ${NPM_DEFAULT_FLAGS} --package-lock-only > /dev/null || die
npm install @emmetio/css-parser --package-lock-only > /dev/null || die
popd > /dev/null || die
fi

Expand Down Expand Up @@ -2423,7 +2423,7 @@ src_configure() {
PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH"
PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH"
export PATH
export NPM_DEFAULT_FLAGS="--nodedir=/usr/include/electron-${ELECTRON_SLOT}/node --arch=${VSCODE_ARCH} --no-audit --no-progress"
export NPM_DEFAULT_FLAGS="--nodedir=/usr/include/electron-${ELECTRON_SLOT}/node --arch=${VSCODE_ARCH} --build-from-source --no-audit --no-progress"
export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node"
export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node"
export ELECTRON_SKIP_BINARY_DOWNLOAD=1
Expand Down
2 changes: 1 addition & 1 deletion app-editors/vscode/vscode-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ src_prepare() {
einfo "Replacing git dependencies with local tgz files"
pushd "extensions/emmet" > /dev/null || die
sed -i "s|\(\"@emmetio/css-parser\":\s*\).*\(,\)|\1\"file:${DISTDIR}/@emmetio-css-parser-0.4.0.tgz\"\2|" package.json || die
npm install @emmetio/css-parser ${NPM_DEFAULT_FLAGS} --package-lock-only > /dev/null || die
npm install @emmetio/css-parser --package-lock-only > /dev/null || die
popd > /dev/null || die
fi

Expand Down

0 comments on commit e185a45

Please sign in to comment.