LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 12-02-2016, 05:54 AM   #1
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Upgraded from 14.1 to 14.2. QT-library problems encountered.


Hi,

I upgraded from 14.1 to 14.2, a 64-bit system with multilib.

First problem is that something is odd with the QT-libraries. When I try to compile packages with qt-library dependencies I get following error:

Code:
QMAKESPEC has not been set, so configuration cannot be deduced.
I have never bothered before to set this variable, is it something one has to do it manually?

There are more QT-questions, but probably may have the same source of the problem.
 
Old 12-02-2016, 06:11 AM   #2
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Original Poster
Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Well, I can post the other errors as well during compilation of for example rstudio-desktop:

Code:
CMake Error at /usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:148 (message):
  Could NOT find Qt4 (missing: QT_MOC_EXECUTABLE QT_RCC_EXECUTABLE
  QT_INCLUDE_DIR QT_QTCORE_INCLUDE_DIR QT_QTGUI_INCLUDE_DIR
  QT_QTNETWORK_INCLUDE_DIR QT_QTWEBKIT_INCLUDE_DIR QT_QTDBUS_INCLUDE_DIR
  QT_UIC_EXECUTABLE) (found suitable version "4.8.7", minimum required is
  "4.8.0")
Code:
> qmake --version
QMake version 2.01a
Using Qt version 4.8.7 in /usr/bin/lib
Code:
> qmake -query
QT_INSTALL_PREFIX:/usr/bin
QT_INSTALL_DATA:/usr/bin
QT_INSTALL_DOCS:/usr/bin/doc
QT_INSTALL_HEADERS:/usr/bin/include
QT_INSTALL_LIBS:/usr/bin/lib
QT_INSTALL_BINS:/usr/bin/bin
QT_INSTALL_PLUGINS:/usr/bin/'.'
QT_INSTALL_IMPORTS:/usr/bin/imports
QT_INSTALL_TRANSLATIONS:/usr/bin/translations
QT_INSTALL_CONFIGURATION:/usr/bin
QT_INSTALL_EXAMPLES:/usr/bin
QT_INSTALL_DEMOS:/usr/bin
QMAKE_MKSPECS:/usr/bin/mkspecs
QMAKE_VERSION:2.01a
QT_VERSION:4.8.7
I wonder if /usr/bin/lib is a wrong location?

Last edited by Bindestreck; 12-02-2016 at 09:24 AM.
 
Old 12-02-2016, 09:28 AM   #3
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,235

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
This is what I get:

Code:
> qmake --version
QMake version 2.01a
Using Qt version 4.8.7 in /usr/lib64/qt/lib
It looks like you have a Qt installation that used /usr/bin as the installation prefix.

Do you get a funny result for which qmake?

Do these funny paths (like /usr/bin/lib) appear in any of the package installation logs in /var/log/packages?

Last edited by dugan; 12-02-2016 at 09:34 AM.
 
Old 12-02-2016, 09:32 AM   #4
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Original Poster
Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Quote:
Originally Posted by dugan View Post
This is what I get:

Code:
> qmake --version
QMake version 2.01a
Using Qt version 4.8.7 in /usr/lib64/qt/lib
Do you get a funny result for which qmake?
No. But I can definitely see that the locations internally are completely wrong. This is from another setup and how it should look like:
Code:
> qmake -query
QT_INSTALL_PREFIX:/usr/lib64/qt
QT_INSTALL_DATA:/usr/lib64/qt
QT_INSTALL_DOCS:/usr/lib64/qt/doc
QT_INSTALL_HEADERS:/usr/lib64/qt/include
QT_INSTALL_LIBS:/usr/lib64/qt/lib
QT_INSTALL_BINS:/usr/lib64/qt/bin
QT_INSTALL_PLUGINS:/usr/lib64/qt/plugins
QT_INSTALL_IMPORTS:/usr/lib64/qt/imports
QT_INSTALL_TRANSLATIONS:/usr/lib64/qt/translations
QT_INSTALL_CONFIGURATION:/etc/xdg
QT_INSTALL_EXAMPLES:/usr/lib64/qt/examples
QT_INSTALL_DEMOS:/usr/lib64/qt/demos
QMAKE_MKSPECS:/usr/lib64/qt/mkspecs
QMAKE_VERSION:2.01a
QT_VERSION:4.8.7
The question is, how to change this internally, I tried with
Code:
qmake -set ENVIRONMENT_VARIABLE LOCATION
but still no effect. I did not compile qt myself but used the binary official package from slackware mirror.

The question is how to change those locations. The package "qt-4.8.7-x86_64-4" seems to have installed files in correct locations, but qmake internally does not respect this. My QT is definitely broken.

Last edited by Bindestreck; 12-02-2016 at 10:04 AM.
 
Old 12-02-2016, 10:12 AM   #5
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,235

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
Quote:
Originally Posted by dugan View Post
Do these funny paths (like /usr/bin/lib) appear in any of the package installation logs in /var/log/packages?
This part was important! You should have answered it.

Also: do the /usr/bin/lib (etc) paths actually exist on disk?

Last edited by dugan; 12-02-2016 at 10:16 AM.
 
Old 12-02-2016, 10:16 AM   #6
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Original Poster
Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Quote:
Originally Posted by dugan View Post
This part was important! You should have answered it.

Also: do the /usr/bin/lib (etc) paths actually exist on disk?
Hi, sorry, did not catch your last message.


No, it does not appear in /var/log/packages or does not even exist on disk...
 
Old 12-02-2016, 10:19 AM   #7
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
What about /usr/bin/lib/ appearing in /var/log/removed_packages/, just in case it is a remnant from your 14.1 system and wasn't removed properly?
 
Old 12-02-2016, 10:27 AM   #8
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Original Poster
Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Quote:
Originally Posted by bassmadrigal View Post
What about /usr/bin/lib/ appearing in /var/log/removed_packages/, just in case it is a remnant from your 14.1 system and wasn't removed properly?
Nope, nothing.

I have reinstalled QT-package from slackware mirror, still same funny locations when typing qmake -query.
 
Old 12-02-2016, 10:44 AM   #9
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Bindestreck --

A WAG ... You mention multilib in your first post.

Are the multilib 32-bit Dev source files in /etc/profile.d/ executable ?

If so, they should be mode 644 and not mode 755 ...

HTH but probably not ...

-- kjh
#
# What I have in my /etc/profile.d/ directory:
#
Code:
# /bin/ls -la /etc/profile.d/32*

-rw-r--r-- 1 root root 1012 Jan 14  2016 /etc/profile.d/32dev.csh
-rw-r--r-- 1 root root 1400 Jan 14  2016 /etc/profile.d/32dev.sh
 
Old 12-02-2016, 10:57 AM   #10
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Original Poster
Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Quote:
Originally Posted by kjhambrick View Post
Bindestreck --

A WAG ... You mention multilib in your first post.

Are the multilib 32-bit Dev source files in /etc/profile.d/ executable ?

If so, they should be mode 644 and not mode 755 ...

HTH but probably not ...

-- kjh
#
# What I have in my /etc/profile.d/ directory:
#
Code:
# /bin/ls -la /etc/profile.d/32*

-rw-r--r-- 1 root root 1012 Jan 14  2016 /etc/profile.d/32dev.csh
-rw-r--r-- 1 root root 1400 Jan 14  2016 /etc/profile.d/32dev.sh
Hi, thanks for the suggestion, but no, they are in 644-mode. qt4* is in 755 mode.
 
Old 12-02-2016, 12:18 PM   #11
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Let's step back and do some sleuthing. What's the output of the following?

Code:
which qmake
ls -la /var/log/packages/qt*
env | grep qt | egrep -v LS_COLORS
grep qmake /var/log/{,removed_}{packages,scripts}/* | egrep -v -e conf -e kde
Hopefully one of these can start to help figure what the difference is between your qt installation and a stock one.
 
Old 12-02-2016, 02:31 PM   #12
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Original Poster
Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Quote:
Originally Posted by bassmadrigal View Post
Let's step back and do some sleuthing. What's the output of the following?

Code:
which qmake
ls -la /var/log/packages/qt*
env | grep qt | egrep -v LS_COLORS
grep qmake /var/log/{,removed_}{packages,scripts}/* | egrep -v -e conf -e kde
Hopefully one of these can start to help figure what the difference is between your qt installation and a stock one.
Code:
> which qmake
/usr/bin/qmake
Code:
> ls -la /var/log/packages/qt*
-rw-r--r-- 1 root root 252611 Dec  2 17:45 /var/log/packages/qt-4.8.7-x86_64-4
-rw-r--r-- 1 root root 240878 Dec  2 15:35 /var/log/packages/qt-compat32-4.8.7-x86_64-4compat32
-rw-r--r-- 1 root root  12583 Dec  2 15:35 /var/log/packages/qt-gstreamer-1.2.0-x86_64-5alien
-rw-r--r-- 1 root root 485597 Dec  2 21:23 /var/log/packages/qt5-5.7.0-x86_64-2alien
-rw-r--r-- 1 root root   6993 Dec  2 21:23 /var/log/packages/qt5-webkit-5.7.0-x86_64-1alien
-rw-r--r-- 1 root root   1500 Jan 11  2016 /var/log/packages/qtkeychain-0.5.0-x86_64-1_SBo
-rw-r--r-- 1 root root   2495 Apr 28  2015 /var/log/packages/qtractor-0.6.4-x86_64-1_SBo
-rw-r--r-- 1 root root   3091 Dec  2 15:35 /var/log/packages/qtruby-4.14.3-x86_64-4alien
-rw-r--r-- 1 root root   1458 Dec  2 15:35 /var/log/packages/qtscriptgenerator-0.2.0-x86_64-2
Code:
> env | grep qt | egrep -v LS_COLORS
CPLUS_INCLUDE_PATH=/usr/lib64/qt/include
QT5DIR=/usr/lib64/qt5
PATH=/home/bindestreck/.opam/system/bin:/usr/dt/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib64/java/bin:/usr/lib64/java/jre/bin:/usr/lib64/kf5:/usr/lib64/kde4/libexec:/usr/kerberos/bin:/usr/lib64/qt/bin:/usr/lib64/qt5/bin:/usr/share/texmf/bin
QT4DIR=/usr/lib64/qt
Code:
> grep qmake /var/log/{,removed_}{packages,scripts}/* | egrep -v -e conf -e kde
/var/log/packages/katepart4-4.14.3-x86_64-2alien:usr/share/apps/katepart/syntax/qmake.xml
/var/log/packages/qt-4.8.7-x86_64-4:usr/lib64/qt/bin/qmake
/var/log/packages/qt-4.8.7-x86_64-4:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/packages/qt-4.8.7-x86_64-4:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/packages/qt-4.8.7-x86_64-4:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/packages/qt-4.8.7-x86_64-4:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/packages/qt-4.8.7-x86_64-4:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/packages/qt-compat32-4.8.7-x86_64-4compat32:usr/lib/qt/bin/qmake
/var/log/packages/qt-compat32-4.8.7-x86_64-4compat32:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/packages/qt-compat32-4.8.7-x86_64-4compat32:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/packages/qt-compat32-4.8.7-x86_64-4compat32:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/packages/qt-compat32-4.8.7-x86_64-4compat32:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/packages/qt-compat32-4.8.7-x86_64-4compat32:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/packages/qt5-5.7.0-x86_64-2alien:usr/lib64/qt5/bin/qmake
/var/log/scripts/qt-4.8.7-x86_64-4:( cd usr/bin ; rm -rf qmake )
/var/log/scripts/qt-4.8.7-x86_64-4:( cd usr/bin ; ln -sf /usr/lib64/qt/bin/qmake qmake )
/var/log/scripts/qt5-5.7.0-x86_64-2alien:( cd usr/bin ; rm -rf qmake-qt5 )
/var/log/scripts/qt5-5.7.0-x86_64-2alien:( cd usr/bin ; ln -sf ../lib64/qt5/bin/qmake qmake-qt5 )
/var/log/removed_packages/kate-4.10.5-x86_64-1-upgraded-2014-03-22,21:38:31:usr/share/apps/katepart/syntax/qmake.xml
/var/log/removed_packages/kate-4.10.5-x86_64-1-upgraded-2014-07-15,14:08:56:usr/share/apps/katepart/syntax/qmake.xml
/var/log/removed_packages/kate-4.11.5-x86_64-1alien-upgraded-2014-04-30,09:06:21:usr/share/apps/katepart/syntax/qmake.xml
/var/log/removed_packages/kate-4.12.5-x86_64-1alien-upgraded-2014-07-15,12:10:51:usr/share/apps/katepart/syntax/qmake.xml
/var/log/removed_packages/kate-4.12.5-x86_64-1alien-upgraded-2014-08-26,12:34:58:usr/share/apps/katepart/syntax/qmake.xml
/var/log/removed_packages/kate-4.13.3-x86_64-1alien-upgraded-2015-04-08,09:25:12:usr/share/apps/katepart/syntax/qmake.xml
/var/log/removed_packages/kate-4.14.3-x86_64-1alien-upgraded-2016-11-18,16:00:39:usr/share/apps/katepart/syntax/qmake.xml
/var/log/removed_packages/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:usr/lib64/qt/bin/qmake
/var/log/removed_packages/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/removed_packages/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/removed_packages/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/removed_packages/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/removed_packages/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/removed_packages/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/removed_packages/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/removed_packages/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/removed_packages/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/removed_packages/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/removed_packages/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:usr/lib64/qt/bin/qmake
/var/log/removed_packages/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/removed_packages/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/removed_packages/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/removed_packages/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/removed_packages/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:usr/lib64/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/removed_packages/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:usr/lib64/qt/bin/qmake
/var/log/removed_packages/qt-compat32-4.8.5-x86_64-2compat32-upgraded-2015-04-30,10:29:24:usr/lib/qt/bin/qmake
/var/log/removed_packages/qt-compat32-4.8.5-x86_64-2compat32-upgraded-2015-04-30,10:29:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/removed_packages/qt-compat32-4.8.5-x86_64-2compat32-upgraded-2015-04-30,10:29:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/removed_packages/qt-compat32-4.8.5-x86_64-2compat32-upgraded-2015-04-30,10:29:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/removed_packages/qt-compat32-4.8.5-x86_64-2compat32-upgraded-2015-04-30,10:29:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/removed_packages/qt-compat32-4.8.5-x86_64-2compat32-upgraded-2015-04-30,10:29:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-1_slack14.1compat32-upgraded-2015-05-13,17:00:54:usr/lib/qt/bin/qmake
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-1_slack14.1compat32-upgraded-2015-05-13,17:00:54:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-1_slack14.1compat32-upgraded-2015-05-13,17:00:54:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-1_slack14.1compat32-upgraded-2015-05-13,17:00:54:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-1_slack14.1compat32-upgraded-2015-05-13,17:00:54:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-1_slack14.1compat32-upgraded-2015-05-13,17:00:54:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-2_slack14.1compat32-upgraded-2015-06-15,10:16:24:usr/lib/qt/bin/qmake
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-2_slack14.1compat32-upgraded-2015-06-15,10:16:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-2_slack14.1compat32-upgraded-2015-06-15,10:16:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-2_slack14.1compat32-upgraded-2015-06-15,10:16:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-2_slack14.1compat32-upgraded-2015-06-15,10:16:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/removed_packages/qt-compat32-4.8.6-x86_64-2_slack14.1compat32-upgraded-2015-06-15,10:16:24:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/removed_packages/qt-compat32-4.8.7-x86_64-1_slack14.1compat32-upgraded-2016-11-18,16:21:00:usr/lib/qt/bin/qmake
/var/log/removed_packages/qt-compat32-4.8.7-x86_64-1_slack14.1compat32-upgraded-2016-11-18,16:21:00:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
/var/log/removed_packages/qt-compat32-4.8.7-x86_64-1_slack14.1compat32-upgraded-2016-11-18,16:21:00:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm
/var/log/removed_packages/qt-compat32-4.8.7-x86_64-1_slack14.1compat32-upgraded-2016-11-18,16:21:00:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
/var/log/removed_packages/qt-compat32-4.8.7-x86_64-1_slack14.1compat32-upgraded-2016-11-18,16:21:00:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
/var/log/removed_packages/qt-compat32-4.8.7-x86_64-1_slack14.1compat32-upgraded-2016-11-18,16:21:00:usr/lib/qt/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm
/var/log/removed_packages/qt5-5.5.1-x86_64-2_SBo-upgraded-2016-11-21,17:58:57:usr/lib64/qt5/bin/qmake
/var/log/removed_packages/qt5-5.5.1-x86_64-4alien-upgraded-2016-06-20,12:34:21:usr/lib64/qt5/bin/qmake
/var/log/removed_packages/qt5-5.6.1-x86_64-1_SBo-upgraded-2016-12-01,15:20:24:usr/lib64/qt5/bin/qmake
/var/log/removed_packages/qt5-5.6.1-x86_64-1_SBo-upgraded-2016-12-02,21:22:34:usr/lib64/qt5/bin/qmake
/var/log/removed_packages/qt5-5.7.0-x86_64-2alien-upgraded-2016-12-02,11:52:53:usr/lib64/qt5/bin/qmake
/var/log/removed_scripts/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:( cd usr/bin ; rm -rf qmake )
/var/log/removed_scripts/qt-4.8.5-x86_64-2-upgraded-2015-04-08,09:35:58:( cd usr/bin ; ln -sf /usr/lib64/qt/bin/qmake qmake )
/var/log/removed_scripts/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:( cd usr/bin ; rm -rf qmake )
/var/log/removed_scripts/qt-4.8.6-x86_64-2alien-upgraded-2015-06-15,10:16:01:( cd usr/bin ; ln -sf /usr/lib64/qt/bin/qmake qmake )
/var/log/removed_scripts/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:( cd usr/bin ; rm -rf qmake )
/var/log/removed_scripts/qt-4.8.7-x86_64-1_slack14.1-upgraded-2016-11-18,16:20:45:( cd usr/bin ; ln -sf /usr/lib64/qt/bin/qmake qmake )
/var/log/removed_scripts/qt5-5.5.1-x86_64-2_SBo-upgraded-2016-11-21,17:58:57:( cd usr/bin ; rm -rf qmake-qt5 )
/var/log/removed_scripts/qt5-5.5.1-x86_64-2_SBo-upgraded-2016-11-21,17:58:57:( cd usr/bin ; ln -sf /usr/lib64/qt5/bin/qmake qmake-qt5 )
/var/log/removed_scripts/qt5-5.5.1-x86_64-4alien-upgraded-2016-06-20,12:34:21:( cd usr/bin ; rm -rf qmake-qt5 )
/var/log/removed_scripts/qt5-5.5.1-x86_64-4alien-upgraded-2016-06-20,12:34:21:( cd usr/bin ; ln -sf ../lib64/qt5/bin/qmake qmake-qt5 )
/var/log/removed_scripts/qt5-5.6.1-x86_64-1_SBo-upgraded-2016-12-01,15:20:24:( cd usr/bin ; rm -rf qmake-qt5 )
/var/log/removed_scripts/qt5-5.6.1-x86_64-1_SBo-upgraded-2016-12-01,15:20:24:( cd usr/bin ; ln -sf /usr/lib64/qt5/bin/qmake qmake-qt5 )
/var/log/removed_scripts/qt5-5.6.1-x86_64-1_SBo-upgraded-2016-12-02,21:22:34:( cd usr/bin ; rm -rf qmake-qt5 )
/var/log/removed_scripts/qt5-5.6.1-x86_64-1_SBo-upgraded-2016-12-02,21:22:34:( cd usr/bin ; ln -sf /usr/lib64/qt5/bin/qmake qmake-qt5 )
/var/log/removed_scripts/qt5-5.7.0-x86_64-2alien-upgraded-2016-12-02,11:52:53:( cd usr/bin ; rm -rf qmake-qt5 )
/var/log/removed_scripts/qt5-5.7.0-x86_64-2alien-upgraded-2016-12-02,11:52:53:( cd usr/bin ; ln -sf ../lib64/qt5/bin/qmake qmake-qt5 )
Thank you for jumping on this dirty boat.
 
Old 12-03-2016, 08:29 AM   #13
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Original Poster
Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Never-mind, I decided to start with a fresh and new Slackware 14.2 install. I therefore mark this thread as "solved".
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Please help. I just upgraded to 11.04 and I am having problems wlbates Linux - Newbie 9 05-27-2011 09:17 PM
problems encountered when read vsftpd code thinke365 Programming 5 06-09-2010 10:50 AM
Tried to update MySQL, but then encountered problems unmet dependencies, and others. Spreegem Debian 4 01-10-2007 12:09 PM
Display problems encountered when using IC 5.0 under RH 7.2 walker8764 Linux - Software 2 02-20-2006 05:43 AM
Missing Gnome shared library on upgraded 9.0 Tuxx0rz Slackware 2 03-31-2003 10:55 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:02 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration