From 5448301d1c72b7c237525ca7f79f148188fdbf90 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Thu, 16 Feb 2023 14:46:17 +0800 Subject: [PATCH] Use the Debian packaged version of node-gyp instead Forwarded: not-needed Reviewed-By: Xavier Guimard Last-Update: 2020-10-08 of the convenience copy that was removed on repack. Gbp-Pq: Name 2011_node-gyp-path.patch --- bin/node-gyp-bin/node-gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/node-gyp-bin/node-gyp b/bin/node-gyp-bin/node-gyp index 70efb6f..ae7cff3 100755 --- a/bin/node-gyp-bin/node-gyp +++ b/bin/node-gyp-bin/node-gyp @@ -1,6 +1,6 @@ #!/usr/bin/env sh if [ "x$npm_config_node_gyp" = "x" ]; then - node "`dirname "$0"`/../../node_modules/node-gyp/bin/node-gyp.js" "$@" + /usr/bin/node-gyp "$@" else "$npm_config_node_gyp" "$@" fi