mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-16 00:52:30 +00:00
'make install' directory needs trailing slash in order to fail (desired) if directory doesn't exist.
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@640 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
023e298dde
commit
e2391c8792
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