mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
'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:
parent
2f85cc13df
commit
b42522932a
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue