#486 closed defect (fixed)
yat_m4_test.sh does not honor --prefix and friend set at make time
Reported by: | Peter | Owned by: | Peter |
---|---|---|---|
Priority: | trivial | Milestone: | yat 0.5 |
Component: | build | Version: | trunk |
Keywords: | Cc: |
Description (last modified by )
yat_m4_test.sh
is built at configure time and thus does not depend on flags set at make time. For instance,
./configure make clean make prefix=/tmp make install make installcheck
will fail because prefix in yat_m4_test.sh
is set to /usr/local
.
Change History (4)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 14 years ago by
Milestone: | yat 0.x+ → yat 0.5 |
---|---|
Status: | new → assigned |
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:4 Changed 14 years ago by
Note: See
TracTickets for help on using
tickets.
closed in r1769
The test of YAT_CHECK_YAT macro is modified so it handles a sequence like: ./configure && make check && make prefix=my_prefix && make install prefix=my_prefix && make installcheck prefix=my_prefix
added a test in maintainer-check that checks this ( I know... testing tests)
Still, there are may situations in which installcheck fails, e.g., when using DESTDIR, so I the test is only tunred on in enable-svn-support mode. Before it was turned on if autotools were available and since we don't need the information whether autotools are available, I removed the configure tests for that.
fixes #486