Le 04/08/2019 à 07:54, Pirate Praveen a écrit :
>
>
> On 2019, ഓഗസ്റ്റ് 4 1:05:42 AM IST, Utkarsh Gupta
> wrote:
>> Hey,
>>
>> On Sat, Aug 3, 2019 at 7:08 PM Xavier wrote:
>>
>>> Hi,
>>>
>>> when you need to link a node library into your package during build
>>> (debian/rules), no more use "ln
On 2019, ഓഗസ്റ്റ് 4 1:05:42 AM IST, Utkarsh Gupta
wrote:
>Hey,
>
>On Sat, Aug 3, 2019 at 7:08 PM Xavier wrote:
>
>> Hi,
>>
>> when you need to link a node library into your package during build
>> (debian/rules), no more use "ln -s /usr/lib/nodejs/npm-name" but
>> instead, use:
>>
>> override_
Hey,
On Sat, Aug 3, 2019 at 7:08 PM Xavier wrote:
> Hi,
>
> when you need to link a node library into your package during build
> (debian/rules), no more use "ln -s /usr/lib/nodejs/npm-name" but
> instead, use:
>
> override_dh_auto_build:
> # ...
> ln -s `nodepath npm-name` node_modules/
Hi,
when you need to link a node library into your package during build
(debian/rules), no more use "ln -s /usr/lib/nodejs/npm-name" but
instead, use:
override_dh_auto_build:
# ...
ln -s `nodepath npm-name` node_modules/
nodepath is included in pkg-js-tools. See nodepath -h for more.
Ch