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.

18 lines
760 B

  1. --- ./mk-1st.awk.orig 2005-06-18 21:15:57.000000000 +0200
  2. +++ ./mk-1st.awk 2006-05-30 01:48:45.556155823 +0200
  3. @@ -207,7 +207,6 @@
  4. } else {
  5. dst_dirs = "$(DESTDIR)$(libdir)";
  6. printf "../lib/%s : $(%s_OBJS)\n", end_name, OBJS
  7. - print "\t-@rm -f $@";
  8. }
  9. if ( subset == "termlib" || subset == "termlib+ext_tinfo" ) {
  10. printf "\t$(MK_SHARED_LIB) $(%s_OBJS) $(TINFO_LIST) $(LDFLAGS)\n", OBJS
  11. @@ -240,7 +239,6 @@
  12. src_name = sprintf("../lib/%s", end_name);
  13. dst_name = sprintf("$(DESTDIR)$(libdir)/%s", end_name);
  14. printf "\t@echo installing %s as %s\n", src_name, dst_name
  15. - printf "\t-@rm -f %s\n", dst_name
  16. printf "\t$(INSTALL_LIB) %s %s\n", src_name, dst_name
  17. sharedlinks("$(DESTDIR)$(libdir)")