0

Delphi (XE8, Seattle and Berlin) seems to remember the invalid paths. As shown in the third picture, these paths are only valid on my old laptop, but when I copied the project to my current desktop, it shouldn't remember these, and I can't find anywhere else that stores these paths.

The dcc32 and dcc64 both save these invalid paths in the command line.

How can I delete these invalid paths?

Project Directory

Paths Configuration

Invalid Paths

Johan
  • 74,508
  • 24
  • 191
  • 319
justyy
  • 5,831
  • 4
  • 40
  • 73

2 Answers2

2

Those bad paths are probably in one of the base configurations. Try selecting one of the ancestor configurations. Paths are "merged" into descendant configurations from the ancestor which is why they don't show up in the dialog.

Allen Bauer
  • 16,657
  • 2
  • 56
  • 74
2

I did a grep -r -e command and finally find out where these invalid paths are.

They are in the *.dproj files so I just removed them in the text editor.

justyy
  • 5,831
  • 4
  • 40
  • 73