simplify some include file paths

For both autotools and cmake, the top-level source directory is always
part of the search path for include files. For include files in this
directory, we can simply use the file name. There's no need for a
relative path.

Change-Id: Ibf46265d91b5cb9bff4fa791e5b1d69ee3c1e165
Reviewed-on: https://code.wireshark.org/review/23798
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Petri-Dish: Martin Kaiser <wireshark@kaiser.cx>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Martin Kaiser 2017-09-29 17:36:55 +02:00 committed by Michael Mann
parent be3b1291d4
commit d8903ce397
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@
#include <epan/packet_info.h>
#include <epan/tap.h>
#include <epan/stat_groups.h>
#include "../register.h"
#include "register.h"
#include "ws_symbol_export.h"
#ifdef __cplusplus

View File

@ -37,8 +37,8 @@
#include <epan/wslua/init_wslua.h>
#endif
#include "../../log.h"
#include "../../register.h"
#include "log.h"
#include "register.h"
#include "ui/alert_box.h"
#include "ui/last_open_dir.h"