diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-11-04 02:49:20 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-11-04 02:49:20 +0000 |
commit | 99cd4b52a7ca9368bc24276d2e62a89a05bd3a77 (patch) | |
tree | 8cbf24ef2ef2257decd4baf8ae9019f5ee0f05ff | |
parent | 62144574998217ae322c9b0b63f0f746d59a89d6 (diff) | |
download | samba-99cd4b52a7ca9368bc24276d2e62a89a05bd3a77.tar.gz samba-99cd4b52a7ca9368bc24276d2e62a89a05bd3a77.tar.bz2 samba-99cd4b52a7ca9368bc24276d2e62a89a05bd3a77.zip |
Any conversion to POPT must *always* add @BUILD_POPT@ or it just won't work on
systems other than linux.
Andrew Bartlett
(This used to be commit 80f1f68b6f0fa38dd1ef4b2cfabb07d3c8daf844)
-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 630aa3a9bd..a2de777374 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -619,11 +619,11 @@ bin/.dummy: bin/smbd: $(SMBD_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(SMBD_OBJ) $(LDFLAGS) $(DYNEXP) $(PRINTLIBS) \ - $(AUTHLIBS) $(LIBS) + $(AUTHLIBS) $(LIBS) @BUILD_POPT@ bin/nmbd: $(NMBD_OBJ) bin/.dummy @echo Linking $@ - @$(CC) $(FLAGS) -o $@ $(NMBD_OBJ) $(LDFLAGS) $(LIBS) + @$(CC) $(FLAGS) -o $@ $(NMBD_OBJ) $(LDFLAGS) $(LIBS) @BUILD_POPT@ bin/wrepld: $(WREPL_OBJ) bin/.dummy @echo Linking $@ |