Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix egrep warnings. JB#61658 #50

Merged
merged 2 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion plugin/plugin.pro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ OTHER_FILES += \
QMAKE_CXXFLAGS += \
-Werror \
-g \
-std=c++0x \
-fPIC \
-fvisibility=hidden \
-fvisibility-inlines-hidden
Expand Down
6 changes: 1 addition & 5 deletions tests/common.pri
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@ PKGCONFIG += mlite5 systemsettings

QMAKE_CXXFLAGS += \
-Werror \
-g \
-std=c++0x \
-fPIC \
-fvisibility=hidden \
-fvisibility-inlines-hidden
-g

target.path = /opt/tests/lipstick-tests
INSTALLS += target
2 changes: 1 addition & 1 deletion tests/gen-tests-xml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ do
</case>
"

if [ -n "`echo $TEST | egrep '^u'`" ]
if [ -n "`echo $TEST | grep -E '^u'`" ]
then
UT_TESTCASES="${UT_TESTCASES}${TESTCASE_TEMPLATE}"
else
Expand Down
5 changes: 1 addition & 4 deletions tools/notificationtool/notificationtool.pro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,4 @@ SOURCES += \

QMAKE_CXXFLAGS += \
-Werror \
-g \
-std=c++0x \
-fvisibility=hidden \
-fvisibility-inlines-hidden
-g