Overview
Comment: | Do not use - prefix to suppress errors
While this suppresses the errors, OpenBSD make still emits an error. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4f0b91a23eb24f46176ebddee0f28ff0 |
User & Date: | js on 2018-11-10 10:55:29 |
Other Links: | manifest | tags |
Context
2020-02-18
| ||
01:47 | Keep .dep files to avoid unnecessary regeneration check-in: a5e752277c user: js tags: trunk | |
2018-11-10
| ||
10:55 | Do not use - prefix to suppress errors check-in: 4f0b91a23e user: js tags: trunk | |
10:54 | Allow specifying start files for Amiga libraries check-in: 4e23dd88bb user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [16863544a7] to [a8f559e708].
︙ | |||
813 814 815 816 817 818 819 | 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 | - - + + | if rm -fr ${DESTDIR}${prefix}/Library/Frameworks/$$i; then \ ${DELETE_OK}; \ else \ ${DELETE_FAILED}; \ fi \ fi \ done |
︙ | |||
837 838 839 840 841 842 843 | 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | - + - + | if : @UNINSTALL_PLUGIN@; then \ ${DELETE_OK}; \ else \ ${DELETE_FAILED}; \ fi \ fi \ done |
︙ | |||
873 874 875 876 877 878 879 | 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 | - + | if rm -f ${DESTDIR}${includedir}/${includesubdir}/$$i; then \ ${DELETE_OK}; \ else \ ${DELETE_FAILED}; \ fi \ fi \ done |
︙ |