fixed Makefile for IRIX make (it doesn't know %.o=%.po, leaving off
authorAndrew Tridgell <tridge@samba.org>
Mon, 5 Oct 1998 10:53:07 +0000 (10:53 +0000)
committerAndrew Tridgell <tridge@samba.org>
Mon, 5 Oct 1998 10:53:07 +0000 (10:53 +0000)
the % works)
(This used to be commit 7c4ad07b5989feee6ab84eb7ff2fe2e76e1475a6)

source3/Makefile.in

index 4e415bee910a840514bbe6c03f91b41facaf4660..8f21e417e6781c37b3f0cfaa1ed6519cafd68501 100644 (file)
@@ -221,7 +221,7 @@ SMBTORTURE_OBJ = utils/torture.o $(LIBSMB_OBJ) $(PARAM_OBJ) \
 PROTO_OBJ = $(SMBD_OBJ) $(NMBD_OBJ) $(SWAT_OBJ) $(CLIENT_OBJ) \
            $(RPCCLIENT_OBJ) $(SMBWRAPPER_OBJ)
 
-PICOBJS = $(SMBWRAPPER_OBJ:%.o=%.po)
+PICOBJS = $(SMBWRAPPER_OBJ:.o=.po)
 
 ######################################################################
 # now the rules...
@@ -338,7 +338,7 @@ bin/smbtorture: $(SMBTORTURE_OBJ) bin/.dummy
 
 smbwrapper/smbwrapper.so: $(PICOBJS)
        @echo Linking shared library $@
-       @$(LD) @LDSHFLAGS@ -o $@ $(PICOBJS) $(LIBS)
+       $(LD) @LDSHFLAGS@ -o $@ $(PICOBJS) $(LIBS)
 
 smbwrapper/smbsh: smbwrapper/smbsh.in config.status
        CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status