Browse Source

since interp is an actual object file that is linked into shared libs, make it a build depend rather than just an order depend

Mike Frysinger 18 years ago
parent
commit
5ffab6434a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makerules

+ 1 - 1
Makerules

@@ -8,7 +8,7 @@
 ifeq ($(HAVE_SHARED),y)
 .LIBPATTERNS: "lib%.so"
 libs: $(lib-so-y) $(lib-a-y)
-$(lib-so-y): | $(interp)
+$(lib-so-y): $(interp)
 else
 .LIBPATTERNS: "lib%.a"
 libs: $(lib-a-y)