mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
68f542b606
License-Update: Use full file for checksum ( COPYING -> LICENSE ) Use system libpcre Drop py3 support patches, its default now Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
[PATCH] replace "./shtool mkdir" with coreutils mkdir command
|
|
|
|
Upstream-Status: Pending
|
|
|
|
"./shtool mkdir" is used when mkdir has not -p parameter, but mkdir in today
|
|
most release has supportted the -p parameter, not need to use shtool, and it
|
|
can not fix the race if two process are running mkdir to create same dir
|
|
|
|
Signed-off-by: Roy Li <rongqing.li@windriver.com>
|
|
---
|
|
ncat/Makefile.in | 4 ++--
|
|
nmap-update/Makefile.in | 2 +-
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/ncat/Makefile.in
|
|
+++ b/ncat/Makefile.in
|
|
@@ -162,11 +162,11 @@ $(NSOCKDIR)/libnsock.a: $(NSOCKDIR)/Make
|
|
|
|
install: $(TARGET)
|
|
@echo Installing Ncat;
|
|
- $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
|
|
+ mkdir -p -m 755 $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
|
|
$(INSTALL) -c -m 755 ncat $(DESTDIR)$(bindir)/ncat
|
|
$(STRIP) -x $(DESTDIR)$(bindir)/ncat
|
|
if [ -n "$(DATAFILES)" ]; then \
|
|
- $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(pkgdatadir); \
|
|
+ mkdir -p -m 755 $(DESTDIR)$(pkgdatadir); \
|
|
$(INSTALL) -c -m 644 $(DATAFILES) $(DESTDIR)$(pkgdatadir)/; \
|
|
fi
|
|
$(INSTALL) -c -m 644 docs/$(TARGET).1 $(DESTDIR)$(mandir)/man1/$(TARGET).1
|