Skip to content

Commit 2a06de2

Browse files
committed
Add some debugging to the make install commands.
1 parent ec52f27 commit 2a06de2

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

cups/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,11 +285,16 @@ install: all $(INSTALL_STATIC)
285285
$(INSTALL_DATA) $$file $(BUILDROOT)$(includedir)/cups; \
286286
done
287287
echo "Installing library to $(BUILDROOT)$(libdir)..."
288+
echo "$(INSTALL_DIR) $(BUILDROOT)$(libdir)"
288289
$(INSTALL_DIR) $(BUILDROOT)$(libdir)
290+
echo "$(INSTALL_LIB) $(LIBCUPS) $(BUILDROOT)$(libdir)"
289291
$(INSTALL_LIB) $(LIBCUPS) $(BUILDROOT)$(libdir)
290292
if test $(LIBCUPS) = "libcups.so.3" -o $(LIBCUPS) = "libcups3.so.3"; then \
293+
echo "$(RM) $(BUILDROOT)$(libdir)/`basename $(LIBCUPS) .3`"; \
291294
$(RM) $(BUILDROOT)$(libdir)/`basename $(LIBCUPS) .3`; \
295+
echo "$(LN) $(LIBCUPS) $(BUILDROOT)$(libdir)/`basename $(LIBCUPS) .3`"; \
292296
$(LN) $(LIBCUPS) $(BUILDROOT)$(libdir)/`basename $(LIBCUPS) .3`; \
297+
echo "test \"x$(BUILDROOT)\" = x -a -x /usr/sbin/ldconfig && /usr/sbin/ldconfig"; \
293298
test "x$(BUILDROOT)" = x -a -x /usr/sbin/ldconfig && /usr/sbin/ldconfig; \
294299
fi
295300
if test $(LIBCUPS) = "libcups.3.dylib" -o $(LIBCUPS) = "libcups3.3.dylib"; then \

0 commit comments

Comments
 (0)