Introduction
Introduction Statistics Contact Development Disclaimer Help
Check if LDCONFIG is set before calling it - libgrapheme - unicode string libra…
git clone git://git.suckless.org/libgrapheme
Log
Files
Refs
README
LICENSE
---
commit 28064303528f2604c5bf932b1478eb9f7c7ffc04
parent a6b3a194f0381c5aef9346d39b02eb058111d2a2
Author: Laslo Hunhold <[email protected]>
Date: Sat, 8 Oct 2022 11:11:49 +0200
Check if LDCONFIG is set before calling it
Otherwise this prints a warning in some make-implementations.
Signed-off-by: Laslo Hunhold <[email protected]>
Diffstat:
M Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Makefile b/Makefile
@@ -288,7 +288,7 @@ install: all
if [ "$(SOSYMLINK)" = "true" ]; then ln -sf "$(SONAME)" "$(DESTDIR)$(L…
if [ "$(SOSYMLINK)" = "true" ]; then ln -sf "$(SONAME)" "$(DESTDIR)$(L…
cp -f grapheme.h "$(DESTDIR)$(INCPREFIX)"
- $(LDCONFIG)
+ if ! [ -z "$(LDCONFIG)" ]; then $(LDCONFIG); fi
uninstall:
for m in $(MAN3:=.3); do rm -f "$(DESTDIR)$(MANPREFIX)/man3/`basename …
@@ -299,7 +299,7 @@ uninstall:
if [ "$(SOSYMLINK)" = "true" ]; then rm -f "$(DESTDIR)$(LIBPREFIX)/lib…
if [ "$(SOSYMLINK)" = "true" ]; then rm -f "$(DESTDIR)$(LIBPREFIX)/lib…
rm -f "$(DESTDIR)$(INCPREFIX)/grapheme.h"
- $(LDCONFIG)
+ if ! [ -z "$(LDCONFIG)" ]; then $(LDCONFIG); fi
clean:
rm -f $(BENCHMARK:=.o) benchmark/util.o $(BENCHMARK) $(GEN:=.h) $(GEN:…
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.