Skip to content

Commit

Permalink
packaging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 23, 2018
1 parent 9c5d397 commit 77be7ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion debian/control.in
Expand Up @@ -25,7 +25,7 @@ Build-Depends:
#!xenial# qtbase5-private-dev,
libqt5svg5-dev, libqt5xmlpatterns5-dev, libqt5webkit5-dev, libqt5opengl5-dev, libqt5sql5-sqlite, libqt5serialport5-dev, libqt5scintilla2-dev,
libqwt-qt5-dev, libqca-qt5-2-dev, libqca-qt5-2-plugins,
opencl-headers,
opencl-headers, ocl-icd-opencl-dev,
python3-dev, python3-all-dev, python3-sip, python3-sip-dev,
pyqt5-dev-tools, pyqt5-dev, pyqt5.qsci-dev,
python3-pyqt5, python3-pyqt5.qsci, python3-pyqt5.qtsql, python3-pyqt5.qtsvg,
Expand Down
4 changes: 2 additions & 2 deletions src/core/qgsapplication.h
Expand Up @@ -507,7 +507,7 @@ class CORE_EXPORT QgsApplication : public QApplication

//! Indicates whether running from build directory (not installed)
static bool isRunningFromBuildDir() { return ABISYM( mRunningFromBuildDir ); }
#ifdef _MSC_VER
#if defined(_MSC_VER) && !defined(USING_NMAKE) && !defined(USING_NINJA)
static QString cfgIntDir() { return ABISYM( mCfgIntDir ); } SIP_SKIP
#endif
//! Returns path to the source directory. Valid only when running from build directory
Expand Down Expand Up @@ -814,7 +814,7 @@ class CORE_EXPORT QgsApplication : public QApplication
static bool ABISYM( mRunningFromBuildDir );
//! Path to the source directory. valid only when running from build directory.
static QString ABISYM( mBuildSourcePath );
#ifdef _MSC_VER
#if defined(_MSC_VER) && !defined(USING_NMAKE) && !defined(USING_NINJA)
//! Configuration internal dir
static QString ABISYM( mCfgIntDir );
#endif
Expand Down

0 comments on commit 77be7ea

Please sign in to comment.