Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Ticket #40 (new defect)

Opened 14 years ago

Last modified 13 years ago

make install fails, ARGS not found

Reported by: mwarning Assigned to: klickverbot
Priority: major Version:
Keywords: Cc:

Description

dmd 1.055 / ubuntu (yes, it compiles again)

CMakeFiles/install:
	cd ARGS /home/user/qtd/build_dir/build && $(MAKE) install

needs to be

CMakeFiles/install:
	cd $(ARGS) /home/user/qtd/build_dir/build && $(MAKE) install

Change History

03/17/11 20:37:09 changed by klickverbot

  • owner changed from somebody to klickverbot.

This sounds more like some CMake-related weirdness, as ARGS is not an environment variable of some kind, but an option to add_custom_command.

Does this error still occur? What version of CMake are you using?