From: Arch Librarian Date: Mon, 20 Sep 2004 16:53:30 +0000 (+0000) Subject: Fixed typo in the shared lib rule X-Git-Tag: 0.7.24ubuntu1~1390 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/ee989411b3d28ad7e16aae6b996ee6c803e94d26 Fixed typo in the shared lib rule Author: jgg Date: 1999-04-12 04:15:43 GMT Fixed typo in the shared lib rule --- diff --git a/buildlib/library.mak b/buildlib/library.mak index b0cf47615..54acb6dd4 100644 --- a/buildlib/library.mak +++ b/buildlib/library.mak @@ -45,7 +45,7 @@ $(LIB)/lib$(LIBRARY).so: $(LIB)/lib$(LIBRARY).so.$(MAJOR).$(MINOR) # The binary build rule $(LIB)/lib$(LIBRARY).so.$(MAJOR).$(MINOR): $($(LOCAL)-HEADERS) $($(LOCAL)-OBJS) - -rm -f lib$($(@F)-LIBRARY).so* 2> /dev/null + -rm -f $(LIB)/lib$($(@F)-LIBRARY).so* 2> /dev/null echo Building shared library $@ $(CXX) $(CXXFLAGS) $(LDFLAGS) $(PICFLAGS) $(LFLAGS) -o $@ \ -Wl,-soname -Wl,$($(@F)-SONAME) -shared $(filter %.opic,$^) \