Changes between Initial Version and Version 1 of Ticket #68742
- Timestamp:
- Nov 19, 2023, 7:33:01 PM (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #68742
-
Property
Component
changed from
ports
tobase
-
Property
Component
changed from
-
Ticket #68742 – Description
initial v1 1 In the world of the autotools, it is common to use a CONFIG_SITE to specify parameters to the configure script. There is something about the current macports build that does not play well with this. If the environment variable CONFIG_SITE is set to a path containing the text "prefix=/p/a/t/h", then the build (checked out at ddc57c5f6ced9ccc0bb4e04e22e218ae851c241d) fails. To be specific:1 In the world of the autotools, it is common to use a CONFIG_SITE to specify parameters to the configure script. There is something about the current macports build that does not play well with this. If the environment variable CONFIG_SITE is set to a path containing the text "prefix=/p/a/t/h", then the build (checked out at [ddc57c5f6ced9ccc0bb4e04e22e218ae851c241d/macports-base]) fails. To be specific: 2 2 3 {{{ 3 4 export CONFIG_SITE=/some/path 4 5 echo 'prefix=/p/a/t/h' > $CONFIG_SITE 5 6 ./configure 6 7 make 8 }}} 7 9 8 10 fails with an error like: 9 11 12 {{{ 10 13 chmod: ${PWD}/vendor/vendor-destroot/p/a/t/h/libexec/macports/lib/tcllib*: No such file or directory 14 }}} 11 15 12 16 The build works fine if the config site is not used but instead the user invokes the configure script with the prefix specified as an argument.