Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Openwrt Chaos Calmer Dev Edition 2015
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nounous-archives
Openwrt Chaos Calmer Dev Edition 2015
Commits
23ac60b6
Commit
23ac60b6
authored
18 years ago
by
mbm
Browse files
Options
Downloads
Patches
Plain Diff
trivial changes
git-svn-id:
svn://svn.openwrt.org/openwrt/trunk@5668
3c298f89-4303-0410-b956-a3cf2f4a3e73
parent
3c0d0b56
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
include/host.mk
+4
-4
4 additions, 4 deletions
include/host.mk
with
5 additions
and
5 deletions
Makefile
+
1
−
1
View file @
23ac60b6
...
...
@@ -20,7 +20,7 @@ all: world
SHELL
:=
/usr/bin/env bash
export
LC_ALL
=
C
export
LANG
=
C
export
TOPDIR
=
${
shell
pwd
}
export
TOPDIR
=
${
CURDIR
}
ifeq
($(KBUILD_VERBOSE),99)
MAKE
:=
3>/dev/null
$(
MAKE
)
endif
...
...
This diff is collapsed.
Click to expand it.
include/host.mk
+
4
−
4
View file @
23ac60b6
...
...
@@ -23,11 +23,11 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk
echo
"HOST_OS:=
$$
HOST_OS"
>
$@
;
\
echo
"HOST_ARCH:=
$$
HOST_ARCH"
>>
$@
;
\
echo
"GNU_HOST_NAME:=
$$
GNU_HOST_NAME"
>>
$@
;
\
TAR
=
`
which gtar
`
;
\
[
-n
"
$$
TAR"
-a
-x
"
$$
TAR"
]
||
TAR
=
`
which
tar
`
;
\
TAR
=
`
which gtar
2>/dev/null
`
;
\
[
-n
"
$$
TAR"
-a
-x
"
$$
TAR"
]
||
TAR
=
`
which
tar
2>/dev/null
`
;
\
echo
"TAR:=
$$
TAR"
>>
$@
;
\
ZCAT
=
`
which gzcat
`
;
\
[
-n
"
$$
ZCAT"
-a
-x
"
$$
ZCAT"
]
||
ZCAT
=
`
which zcat
`
;
\
ZCAT
=
`
which gzcat
2>/dev/null
`
;
\
[
-n
"
$$
ZCAT"
-a
-x
"
$$
ZCAT"
]
||
ZCAT
=
`
which zcat
2>/dev/null
`
;
\
echo
"ZCAT:=
$$
ZCAT"
>>
$@
;
\
echo
"BASH:=
$(
shell which bash
)
"
>>
$@
;
\
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment