diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-05 10:53:07 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-05 10:53:07 +0000 |
commit | f151bf0694cd41bab2ed8a4ff260ff84f714ec5c (patch) | |
tree | 4e3aef866e6d7ca8716077e64d4e2cc0474481f8 | |
parent | 62f2ac904fb1c564d9a359b01f8c88d83f3b76a9 (diff) | |
download | samba-f151bf0694cd41bab2ed8a4ff260ff84f714ec5c.tar.gz samba-f151bf0694cd41bab2ed8a4ff260ff84f714ec5c.tar.bz2 samba-f151bf0694cd41bab2ed8a4ff260ff84f714ec5c.zip |
fixed Makefile for IRIX make (it doesn't know %.o=%.po, leaving off
the % works)
(This used to be commit 7c4ad07b5989feee6ab84eb7ff2fe2e76e1475a6)
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 4e415bee91..8f21e417e6 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -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 |