Skip to content

Compiling issue #281

@v1r4lv0rt3x

Description

@v1r4lv0rt3x

Good morning,
When I wanted to download httrack I saw the method to compile it and noticed that it was written a certain way:
./configure && make -j8 && make install DESTDIR=/
I then noticed make -j8 and I said to myself that a processor with less than 8 cores would not be able to execute this command, so I suggest you correct and replace with:
./configure && make -j$(nproc) && make install DESTDIR=/
Here I refer to the nproc environment variable which returns the number of cores to avoid the computer crashing if it had less than 8 cores.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions