diff options
author | EuAndreh <eu@euandre.org> | 2025-01-16 08:59:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-01-16 08:59:43 -0300 |
commit | f3b087b4cbb787713ada4e31fdd26068c8ca2a92 (patch) | |
tree | b69a6613c3967ba24ab21ed610f7a9265d745344 | |
parent | Makefile: Normalize alongside other projects; fix $(integration-tests) (diff) | |
download | pindaiba-f3b087b4cbb787713ada4e31fdd26068c8ca2a92.tar.gz pindaiba-f3b087b4cbb787713ada4e31fdd26068c8ca2a92.tar.xz |
Makefile: keep symlinks in "install" target
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -158,7 +158,7 @@ install: all cp lib$(NAME).a '$(DESTDIR)$(LIBDIR)' cp src/$(NAME).h '$(DESTDIR)$(INCLUDEDIR)' cp $(sources.h) '$(DESTDIR)$(INCLUDEDIR)'/$(NAME) - cp $(sources) '$(DESTDIR)$(SRCDIR)' + cp -P $(sources) '$(DESTDIR)$(SRCDIR)' for c in $(catalogs.cat); do \ l="`echo "$$c" | cut -d. -f2`"; \ dir='$(DESTDIR)$(LOCALEDIR)'/"$$l"/LC_MESSAGES; \ |