'make install' directory needs trailing slash in order to fail (desired) if directory doesn't exist.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@640 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Steven 2012-03-08 07:17:49 +00:00
parent 2f85cc13df
commit b42522932a
2 changed files with 2 additions and 2 deletions

View File

@ -280,7 +280,7 @@ debug:
$(error Use "make DEBUG=1")
install: quakespasm
cp quakespasm /usr/local/games/quake
cp quakespasm /usr/local/games/quake/
clean:
rm -f $(shell find . \( -name '*~' -o -name '#*#' -o -name '*.o' -o -name '*.res' -o -name $(DEFAULT_TARGET) \) -print)

View File

@ -306,7 +306,7 @@ debug:
$(error Use "make DEBUG=1")
install: quakespasm
cp quakespasm /usr/local/games/quake
cp quakespasm /usr/local/games/quake/
clean:
rm -f $(shell find . \( -name '*~' -o -name '#*#' -o -name '*.o' -o -name '*.res' -o -name $(DEFAULT_TARGET) \) -print)