Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.5.7, 2.0.0-M3
-
Slackware Linux 13.37 32bit
Description
The command "rm" does not recognize "-d" on Slackware. I was able to fix the problem by changing the commands from "rm -fd" to "rm -rf":
syzdek@slack131$ diff apacheds-2.0.0-M3-32bit.bin apacheds.bin
271c271
< rm -rd instance
—
> rm -rf instance
273c273
< rm -rd server
—
> rm -rf server
syzdek@slack131$