Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
c54558e3
Commit
c54558e3
authored
Nov 26, 2017
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile: Quote '$@' in make calls with double quotes.
parent
1539c20e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
Makefile
Makefile
+9
-9
No files found.
Makefile
View file @
c54558e3
...
...
@@ -61,12 +61,12 @@ NX_XTRANS_HEADERS = \
$(NULL)
%
:
if
test
-f
nxcomp/Makefile
;
then
${
MAKE
}
-C
nxcomp
$@
;
fi
if
test
-f
nxproxy/Makefile
;
then
${
MAKE
}
-C
nxproxy
$@
;
fi
if
test
-f
nxcomp/Makefile
;
then
${
MAKE
}
-C
nxcomp
"
$@
"
;
fi
if
test
-f
nxproxy/Makefile
;
then
${
MAKE
}
-C
nxproxy
"
$@
"
;
fi
if
test
-d
nx-X11
;
then
\
if
test
-f
nx-X11/lib/Makefile
;
then
${
MAKE
}
-C
nx-X11/lib
$@
;
fi
;
\
if
test
-f
nxcompshad/Makefile
;
then
${
MAKE
}
-C
nxcompshad
$@
;
fi
;
\
if
test
-f
nx-X11/Makefile
;
then
${
MAKE
}
-C
nx-X11
$@
;
fi
;
\
if
test
-f
nx-X11/lib/Makefile
;
then
${
MAKE
}
-C
nx-X11/lib
"
$@
"
;
fi
;
\
if
test
-f
nxcompshad/Makefile
;
then
${
MAKE
}
-C
nxcompshad
"
$@
"
;
fi
;
\
if
test
-f
nx-X11/Makefile
;
then
${
MAKE
}
-C
nx-X11
"
$@
"
;
fi
;
\
fi
# clean auto-generated files
...
...
@@ -234,15 +234,15 @@ uninstall:
[
!
-d
nx-X11
]
||
$(MAKE)
uninstall-full
uninstall-lite
:
if
test
-f
nxcomp/Makefile
;
then
${
MAKE
}
-C
nxcomp
$@
;
fi
if
test
-f
nxproxy/Makefile
;
then
${
MAKE
}
-C
nxproxy
$@
;
fi
if
test
-f
nxcomp/Makefile
;
then
${
MAKE
}
-C
nxcomp
"
$@
"
;
fi
if
test
-f
nxproxy/Makefile
;
then
${
MAKE
}
-C
nxproxy
"
$@
"
;
fi
$(RM_FILE)
$(DESTDIR)$(PREFIX)/share/nx/VERSION.nxproxy
$(RM_DIR)
$(DESTDIR)$(PREFIX)/share/nx/
uninstall-full
:
if
test
-f
nxcompshad/Makefile
;
then
${
MAKE
}
-C
nxcompshad
$@
;
fi
if
test
-f
nx-X11/lib/Makefile
;
then
${
MAKE
}
-C
nx-X11/lib
$@
;
fi
if
test
-f
nxcompshad/Makefile
;
then
${
MAKE
}
-C
nxcompshad
"
$@
"
;
fi
if
test
-f
nx-X11/lib/Makefile
;
then
${
MAKE
}
-C
nx-X11/lib
"
$@
"
;
fi
$(RM_FILE)
$(DESTDIR)$(BINDIR)/nxagent
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment