]> arthur.barton.de Git - bup.git/commit
Don't use $(wildcard) during 'make install'. bup-0.17a
authorAvery Pennarun <apenwarr@gmail.com>
Sat, 4 Sep 2010 23:42:47 +0000 (16:42 -0700)
committerAvery Pennarun <apenwarr@gmail.com>
Sat, 4 Sep 2010 23:45:11 +0000 (16:45 -0700)
commitb045a23f7d4659ac66afe36f6f0e426b42abb368
tree53c4f393c70411ab71939f4f6005aec98cd75d39
parentc2bc8a22b16921dbf382a3756d704ccab763e96d
Don't use $(wildcard) during 'make install'.

It seems the $(wildcard) is evaluated once at make's startup, so any changes
made *during* build don't get noticed.

That means 'make install' would fail if you ran it without first running
'make all', because $(wildcard cmd/bup-*) wouldn't match anything at startup
time; the files we were copying only got created during the build.

Problem reported by David Roda.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
Makefile