diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index de5f7ad87..37c03f8cc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -75,7 +75,9 @@ install: $(TARGET_LIB) $(TARGET_LIB): @for i in $(SUBDIRS); do objects="$$objects $$i/*.@so_ext@"; done ; \ - $(LINK) @lib_target@ + tmpcmd="$(LINK) @lib_target@"; \ + echo $$tmpcmd; \ + $$tmpcmd delete-exports: @if test -f apr.exp; then \ |