Skip to content

Commit fe3a9ae

Browse files
committed
Makefile.am: install-win-bundle-thirdparty: typo fix (broken DLL delivery) [fallout of PR #3222, issue #3219]
Signed-off-by: Jim Klimov <[email protected]>
1 parent 2a9c5fe commit fe3a9ae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile.am

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,7 @@ install-win-bundle-thirdparty:
15171517
if test -n "$$ARCH" ; then export ARCH ; fi ; \
15181518
DESTDIR='$(DESTDIR)' ; export DESTDIR ; \
15191519
( cd '$(DESTDIR)' || exit ; \
1520-
GREP=$(GREP)' EGREP='$(EGREP)' \
1520+
GREP='$(GREP)' EGREP='$(EGREP)' \
15211521
DESTDIR="" '$(abs_top_srcdir)/scripts/Windows/dllldd.sh' dllldddir . \
15221522
| while read D ; do \
15231523
echo " DLL->bin $$D" 2>&1 ; \
@@ -1526,7 +1526,7 @@ install-win-bundle-thirdparty:
15261526
) || exit ; \
15271527
( if test x"$(bindir)" = x"$(sbindir)" ; then exit 0 ; fi ; \
15281528
cd '$(DESTDIR)/$(sbindir)' || exit ; \
1529-
GREP=$(GREP)' EGREP='$(EGREP)' \
1529+
GREP='$(GREP)' EGREP='$(EGREP)' \
15301530
'$(abs_top_srcdir)/scripts/Windows/dllldd.sh' dllldddir . \
15311531
| while read D ; do \
15321532
echo " DLL->sbin $$D" 2>&1 ; \
@@ -1536,7 +1536,7 @@ install-win-bundle-thirdparty:
15361536
( if test x"$(driverexecdir)" = x"$(bindir)" ; then exit 0 ; fi ; \
15371537
if test x"$(driverexecdir)" = x"$(sbindir)" ; then exit 0 ; fi ; \
15381538
cd '$(DESTDIR)/$(driverexecdir)' || exit ; \
1539-
GREP=$(GREP)' EGREP='$(EGREP)' \
1539+
GREP='$(GREP)' EGREP='$(EGREP)' \
15401540
'$(abs_top_srcdir)/scripts/Windows/dllldd.sh' dllldddir . \
15411541
| while read D ; do \
15421542
echo " DLL->drv $$D" 2>&1 ; \
@@ -1548,7 +1548,7 @@ install-win-bundle-thirdparty:
15481548
if test x"$(cgiexecdir)" = x"$(sbindir)" ; then exit 0 ; fi ; \
15491549
if test x"$(driverexecdir)" = x"$(cgiexecdir)" ; then exit 0 ; fi ; \
15501550
cd '$(DESTDIR)/$(cgiexecdir)' || exit ; \
1551-
GREP=$(GREP)' EGREP='$(EGREP)' \
1551+
GREP='$(GREP)' EGREP='$(EGREP)' \
15521552
'$(abs_top_srcdir)/scripts/Windows/dllldd.sh' dllldddir . \
15531553
| while read D ; do \
15541554
echo " DLL->cgi $$D" 2>&1 ; \
@@ -1560,7 +1560,7 @@ install-win-bundle-thirdparty:
15601560
if test x"$(libexecdir)" = x"$(driverexecdir)" ; then exit 0 ; fi ; \
15611561
if test x"$(libexecdir)" = x"$(cgiexecdir)" ; then exit 0 ; fi ; \
15621562
cd '$(DESTDIR)/$(libexecdir)' || exit ; \
1563-
GREP=$(GREP)' EGREP='$(EGREP)' \
1563+
GREP='$(GREP)' EGREP='$(EGREP)' \
15641564
'$(abs_top_srcdir)/scripts/Windows/dllldd.sh' dllldddir . \
15651565
| while read D ; do \
15661566
echo " DLL->libexec $$D" 2>&1 ; \

0 commit comments

Comments
 (0)