diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-19 12:51:37 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-19 12:51:37 +0100 |
commit | 90e8bc75e3d32029bc740ce5ca3db1b45c8a7240 (patch) | |
tree | 76a0afafeaf1b325e68d438e6416d2dc8dc8e03a /meta/classes/autotools.bbclass | |
parent | 372f2f40c09050346e5bd62d47d3ebdf05d76d29 (diff) | |
download | poky-90e8bc75e3d32029bc740ce5ca3db1b45c8a7240.tar.gz |
autotools.bbclass: Drop a number of legacy functions that shouldn't be (and aren't) used in poky now
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r-- | meta/classes/autotools.bbclass | 34 |
1 files changed, 1 insertions, 33 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 649e269f3e..6f2fcbf211 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -164,41 +164,9 @@ autotools_prepackage_lamangler () { | |||
164 | done | 164 | done |
165 | } | 165 | } |
166 | 166 | ||
167 | # STAGE_TEMP_PREFIX is used for a speedup by packaged-staging | ||
168 | STAGE_TEMP="${WORKDIR}/temp-staging" | ||
169 | STAGE_TEMP_PREFIX = "" | ||
170 | |||
171 | autotools_stage_includes() { | ||
172 | if [ "${INHIBIT_AUTO_STAGE_INCLUDES}" != "1" ] | ||
173 | then | ||
174 | rm -rf ${STAGE_TEMP} | ||
175 | mkdir -p ${STAGE_TEMP} | ||
176 | make DESTDIR="${STAGE_TEMP}" install | ||
177 | cp -pPR ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR} | ||
178 | rm -rf ${STAGE_TEMP} | ||
179 | fi | ||
180 | } | ||
181 | |||
182 | autotools_stage_dir() { | 167 | autotools_stage_dir() { |
183 | sysroot_stage_dir $1 ${STAGE_TEMP_PREFIX}$2 | 168 | sysroot_stage_dir $1 $2 |
184 | } | 169 | } |
185 | 170 | ||
186 | autotools_stage_libdir() { | ||
187 | sysroot_stage_libdir $1 ${STAGE_TEMP_PREFIX}$2 | ||
188 | } | ||
189 | |||
190 | autotools_stage_all() { | ||
191 | if [ "${INHIBIT_AUTO_STAGE}" = "1" ] | ||
192 | then | ||
193 | return | ||
194 | fi | ||
195 | rm -rf ${STAGE_TEMP} | ||
196 | mkdir -p ${STAGE_TEMP} | ||
197 | oe_runmake DESTDIR="${STAGE_TEMP}" install | ||
198 | rm -rf ${STAGE_TEMP}/${mandir} || true | ||
199 | rm -rf ${STAGE_TEMP}/${infodir} || true | ||
200 | sysroot_stage_dirs ${STAGE_TEMP} ${STAGE_TEMP_PREFIX} | ||
201 | rm -rf ${STAGE_TEMP} | ||
202 | } | ||
203 | 171 | ||
204 | EXPORT_FUNCTIONS do_configure do_install | 172 | EXPORT_FUNCTIONS do_configure do_install |