take multi-arch extensions for shared-libraries into account when testing
This commit is contained in:
parent
f148feecff
commit
9b1ba69e7e
1 changed files with 8 additions and 0 deletions
|
|
@ -22,11 +22,19 @@ include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|
||||||
|
|
||||||
# simplistic tests whether all expected files have been produced/installed
|
# simplistic tests whether all expected files have been produced/installed
|
||||||
buildcheck: all
|
buildcheck: all
|
||||||
|
ifeq ($(shared.extension), $(extension))
|
||||||
test -e lib$(lib.name).$(shared.extension)
|
test -e lib$(lib.name).$(shared.extension)
|
||||||
|
else
|
||||||
|
test -e lib$(lib.name).$(extension).$(shared.extension)
|
||||||
|
endif
|
||||||
test -e multisharedA.$(extension)
|
test -e multisharedA.$(extension)
|
||||||
test -e multisharedB.$(extension)
|
test -e multisharedB.$(extension)
|
||||||
installcheck: install
|
installcheck: install
|
||||||
|
ifeq ($(shared.extension), $(extension))
|
||||||
test -e $(installpath)/lib$(lib.name).$(shared.extension)
|
test -e $(installpath)/lib$(lib.name).$(shared.extension)
|
||||||
|
else
|
||||||
|
test -e $(installpath)/lib$(lib.name).$(extension).$(shared.extension)
|
||||||
|
endif
|
||||||
test -e $(installpath)/multisharedA.$(extension)
|
test -e $(installpath)/multisharedA.$(extension)
|
||||||
test -e $(installpath)/multisharedB.$(extension)
|
test -e $(installpath)/multisharedB.$(extension)
|
||||||
test -e $(installpath)/multishared-help.pd
|
test -e $(installpath)/multishared-help.pd
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue