mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-03-12 12:02:32 +00:00
fix for newer bash 2. if this works as expected, I'll propogate it to the other makefiles.
This commit is contained in:
parent
340179389b
commit
8101db3629
1 changed files with 5 additions and 3 deletions
|
@ -107,9 +107,11 @@ clean: $(CLEAN_TARGETS)
|
||||||
|
|
||||||
install: $(targets)
|
install: $(targets)
|
||||||
$(PROJECT_DIR)/mkinstalldirs $(DESTDIR)/$(bindir)
|
$(PROJECT_DIR)/mkinstalldirs $(DESTDIR)/$(bindir)
|
||||||
for i in $(targets); do \
|
for i in x-dummy $(targets); do \
|
||||||
$(PROJECT_DIR)/install-sh -m 755 $(BUILD_DIR)/../$$i \
|
if test "$i" -ne x-dummy; then \
|
||||||
$(DESTDIR)/$(bindir)/$$i; \
|
$(PROJECT_DIR)/install-sh -m 755 $(BUILD_DIR)/../$$i \
|
||||||
|
$(DESTDIR)/$(bindir)/$$i; \
|
||||||
|
fi \
|
||||||
done
|
done
|
||||||
|
|
||||||
check:
|
check:
|
||||||
|
|
Loading…
Reference in a new issue