diff options
author | Jeff Morriss <jeff.morriss@ulticom.com> | 2007-02-06 06:24:34 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss@ulticom.com> | 2007-02-06 06:24:34 +0000 |
commit | 280521cead9faa69c2159e3ca67f9b10d999a372 (patch) | |
tree | 882d2a4909f4749eb0f5a2438f59fb8241dbd0ec /Makefile.am | |
parent | 0c17bfd3a82489192d2738713c55366ccb277129 (diff) | |
download | wireshark-280521cead9faa69c2159e3ca67f9b10d999a372.tar.gz wireshark-280521cead9faa69c2159e3ca67f9b10d999a372.tar.bz2 wireshark-280521cead9faa69c2159e3ca67f9b10d999a372.zip |
rdps is built to run on the compile server, not on the target machine: use CC and CFLAGS instead of CC_FOR_BUILD and CFLAGS_FOR_BUILD, respectively
svn path=/trunk/; revision=20727
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1168de9101..19ecbbcd96 100644 --- a/Makefile.am +++ b/Makefile.am @@ -410,7 +410,7 @@ ps.c: print.ps rdps ./rdps $(srcdir)/print.ps ps.c rdps: rdps.c - $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -o rdps $(srcdir)/rdps.c + $(CC) $(CFLAGS) -o rdps $(srcdir)/rdps.c # # XXX - "svnversion.h" is distributed in the release tarball; should |