Overview
Comment: | Fix make install
I accidentally left this code in before committing. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e2d56e07c919eb16f34125c66d9c5d8a |
User & Date: | js on 2024-05-05 00:54:30 |
Other Links: | manifest | tags |
Context
2024-08-11
| ||
09:02 | Change license to unmodified ISC Leaf check-in: 28f534922c user: js tags: trunk | |
2024-05-05
| ||
00:54 | Fix make install check-in: e2d56e07c9 user: js tags: trunk | |
00:40 | Update autogen.sh check-in: e98b322ac4 user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [78915595d6] to [9eda233348].
︙ | ︙ | |||
822 823 824 825 826 827 828 | if ${MKDIR_P} ${DESTDIR}${plugindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${plugindir}/$$i; then \ ${INSTALL_OK}; \ else \ ${INSTALL_FAILED}; \ fi \ done | < < < < < < < | 822 823 824 825 826 827 828 829 830 831 832 833 834 835 | if ${MKDIR_P} ${DESTDIR}${plugindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${plugindir}/$$i; then \ ${INSTALL_OK}; \ else \ ${INSTALL_FAILED}; \ fi \ done for i in "" ${BUNDLE}; do \ test x"$$i" = x"" && continue; \ ${INSTALL_STATUS}; \ rm -fr ${DESTDIR}${bundledir}/$$i; \ if ${MKDIR_P} ${DESTDIR}${bundledir} && \ cp -R $$i ${DESTDIR}${bundledir}/; then \ ${INSTALL_OK}; \ |
︙ | ︙ |