mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
599 B

  1. --- ./dist/Makefile.in.orig 2004-12-07 17:01:23.000000000 +0100
  2. +++ ./dist/Makefile.in 2004-12-07 17:02:23.000000000 +0100
  3. @@ -623,7 +623,7 @@
  4. # Real static C library.
  5. $(libdb_version): $(C_OBJS)
  6. - $(ar) cr $@ $(C_OBJS)
  7. + $(ar) cr $@ $(patsubst %.lo,%.o,$(C_OBJS))
  8. test ! -f $(ranlib) || $(ranlib) $@
  9. # Shared C library.
  10. @@ -640,7 +640,7 @@
  11. # Real static C++ library.
  12. $(libcxx_version): $(CXX_OBJS) $(C_OBJS)
  13. - $(ar) cr $@ $(CXX_OBJS) $(C_OBJS)
  14. + $(ar) cr $@ $(patsubst %.lo,%.o,$(CXX_OBJS)) $(patsubst %.lo,%.o,$(C_OBJS))
  15. test ! -f $(ranlib) || $(ranlib) $@
  16. # Shared C++ library.