mirror of https://github.com/encounter/SDL.git
test: Use install(1) more portably
I had assumed that only Linux users would be interested in GNOME-style installed-tests, but in principle there's no reason why they can't be used on non-Linux. Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
parent
848d2008c6
commit
a95f5a792c
|
@ -103,9 +103,11 @@ generatetestmeta:
|
||||||
done
|
done
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
install -D -t $(DESTDIR)$(installedtestsdir) $(TARGETS)
|
install -d $(DESTDIR)$(installedtestsdir)
|
||||||
install -m644 -D -t $(DESTDIR)$(installedtestsdir) $(DATA)
|
install $(TARGETS) $(DESTDIR)$(installedtestsdir)
|
||||||
install -m644 -D -t $(DESTDIR)$(installedtestsmetadir) *.test
|
install -m644 $(DATA) $(DESTDIR)$(installedtestsdir)
|
||||||
|
install -d $(DESTDIR)$(installedtestsmetadir)
|
||||||
|
install -m644 *.test $(DESTDIR)$(installedtestsmetadir)
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in
|
Makefile: $(srcdir)/Makefile.in
|
||||||
$(SHELL) config.status $@
|
$(SHELL) config.status $@
|
||||||
|
|
Loading…
Reference in New Issue