Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #008600

  • 0 - None Assigned

  • Working as Intended

Issue Confirmations

  • Yes (0)No (0)
Photo

Make files infinity loop on latest version

Posted by Thunderbolt on 31 March 2015 - 07:00 AM

i use command ./configure

make clean
make sql

on linux server



Make files infinity loop

Posted Image

I think makefiles.in call

MAP_C : channel.c
MAP_H : channel.h

bug

Doesnt happen with me, but the screen stats that your MakwFile.in have date of the future, maybe you copied repo from your PC to Linux??

Any way to reproduce??

changed status to: Unable To Reproduce

yes, i copied repo from PC to Linux.

Edited by Thunderbolt, 31 March 2015 - 01:45 PM.


Then it's not a bug. Copying files from Windows to Linux will corrupt them.

You can run the following command to try and fix them (from the directory where you have your Hercules files):
find . -type f -exec touch '{}' \;
This will change the modification date of all files to the current timestamp. But there might still be issues with the line endings and/or executable bits, so your mileage may vary.

The recommended way to run Hercules on linux is to checkout the repository on linux (or any other UNIX system) through a git client.

changed status to: Working as Intended