NAME_IN and COPY built-in

You can reference items indirectly with the NAME_IN and COPY built-in subprograms.
The NAME_IN function returns the contents of an indicated variable or item.Use the NAME_IN function to get the value of an item without referring to the item directly.
The following statements are equivalent:

IF :emp.ename = 'smith' -- direct reference
IF NAME_IN('emp.ename') = 'smith' -- indirect reference

The return value is always a character string.To use NAME_IN for a DATE or NUMBER item, convert the string to the desired data type with the appropriate conversion function:

date_var := TO_DATE(Name_In('order.date_item'));
num_var := TO_NUMBER(Name_In('order.number_item'));

Notes on NAME_IN:

*The NAME_IN function cannot return the contents of a global or local variable.

*In PL/SQL triggers that will be executed in enter-query mode, you must use NAME_IN rather than normal bind-variable notation to access values in the data-block.(This is because the end-user mighttype relational operators into the item, producing a value which is not in a form that can be processed by PL/SQL.)

The COPY ProcedureThe COPY procedure assigns an indicated value to an indicated variable or item.Unlike standard PL/SQL assignment, however, using the COPY procedure allows you to indirectly reference the item whose value is being set:

:emp.ename := 'smith'; -- direct reference
Copy('smith','emp.ename'); -- indirect reference


COPY can be used with the NAME_IN function to assign a value to an item whose name is stored in a reference variable or item:

/* put value 'smith' in item whose name is stored in ref_item */
Copy('smith',Name_In('control.ref_item'));

Why Use Indirect ReferenceReferencing items indirectly allows you to write more generic, reusable code.By using variables in place of actual item names, you can write a subprogram that can operate on any item whose name has been assigned to the indicated variable.
Also, using indirect reference is mandatory when you refer to the value of a form bind variable (item, parameter, global variable) in PL/SQL that you write in a library or a menu module. Because libraries, menus, and forms are separate application modules, you cannot refer directly to the value of a form item in a menu-item command or library procedure.

library is not saved within form. but in different file, so there is no where to find :frm1.txt1

for example, if you have a procedure in library:

procedure p1( v_one varchar2)

name_in(v_one) to get the value inside v_one, that is :frm1.txt1, so:

copy('value', name_in(v_one)) ==> to copy value to the txt field txt1 in form frm1.

you can't use:

copy('value', :frm1.txt1), nor you can:

copy('value', v_one).


make[10]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/include/curl' make[9]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/include/curl' make[9]: Entering directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/include' make[10]: Entering directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/include' make[10]: Nothing to be done for 'install-exec-am'. make[10]: Nothing to be done for 'install-data-am'. make[10]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/include' make[9]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/include' make[8]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/include' make[7]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1' make[6]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1' make[5]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1' make[4]: Leaving directory '/mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1' touch /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/.built mkdir -p /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl/CONTROL /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo install -d -m0755 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl/usr/lib cp -fpR /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-install/usr/lib/libcurl.so.* /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl/usr/lib/ find /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl -name 'CVS' -o -name '.svn' -o -name '.#*' -o -name '*~'| xargs -r rm -rf export CROSS="aarch64-openwrt-linux-musl-" NO_RENAME=1 ; NM="aarch64-openwrt-linux-musl-nm" STRIP="aarch64-openwrt-linux-musl-strip --strip-all" STRIP_KMOD="/mydisk/omada_gateway/scripts/strip-kmod.sh" /mydisk/omada_gateway/scripts/rstrip.sh /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl rstrip.sh: /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl/usr/lib/libcurl.so.4.8.0:shared object ( echo "Package: libcurl"; echo "Version: 7.83.1"; DEPENDS=''; for depend in libc libopenssl ca-bundle librt; do DEPENDS=${DEPENDS:+$DEPENDS, }${depend##+}; done; [ -z "$DEPENDS" ] || echo "Depends: $DEPENDS"; echo "Source: package/network/utils/curl"; echo "License: MIT"; echo "LicenseFiles: COPYING"; echo "Section: libs"; echo "Maintainer: Stan Grishin <stangri@melmac.ca>"; echo "Architecture: aarch64_cortex-a53"; echo "Installed-Size: 0"; echo -n "Description: "; . /mydisk/omada_gateway/include/shell.sh; getvar V_Package_libcurl_description | sed -e 's,^[[:space:]]*, ,g'; ) > /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl/CONTROL/control chmod 644 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl/CONTROL/control . /mydisk/omada_gateway/include/shell.sh; (cd /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl/CONTROL; ) install -d -m0755 /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages ipkg-build -c -o 0 -g 0 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages Packaged contents of /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/libcurl into /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages/libcurl_7.83.1_aarch64_cortex-a53.ipk rm -rf /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-libcurl mkdir -p /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/stamp /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-libcurl install -d -m0755 /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-libcurl/usr/lib cp -fpR /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-install/usr/lib/libcurl.so.* /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-libcurl/usr/lib/ SHELL= /mydisk/omada_gateway/staging_dir/host/bin/flock /mydisk/omada_gateway/tmp/.root-copy.flock -c 'cp -fpR /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-libcurl/. /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/' rm -rf /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-libcurl touch /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/stamp/.libcurl_installed echo '4' | cmp -s - /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/libcurl.version || echo '4' > /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/libcurl.version if [ -f /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install.clean ]; then rm -f /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install.clean; fi; echo "libcurl" >> /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install make V=ss -j1 clean-staging make[4]: Entering directory '/mydisk/omada_gateway/package/network/utils/curl' rm -f /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/stamp/.curl_installed make[4]: Leaving directory '/mydisk/omada_gateway/package/network/utils/curl' rm -rf /mydisk/omada_gateway/tmp/stage-curl mkdir -p /mydisk/omada_gateway/tmp/stage-curl/host /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/packages /mydisk/omada_gateway/staging_dir/host/packages install -d -m0755 /mydisk/omada_gateway/tmp/stage-curl/host/bin /mydisk/omada_gateway/tmp/stage-curl/usr/bin /mydisk/omada_gateway/tmp/stage-curl/usr/include /mydisk/omada_gateway/tmp/stage-curl/usr/lib /mydisk/omada_gateway/tmp/stage-curl/usr/lib/pkgconfig install -m0755 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-install/usr/bin/curl-config /mydisk/omada_gateway/tmp/stage-curl/usr/bin/ cp -fpR /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-install/usr/include/curl /mydisk/omada_gateway/tmp/stage-curl/usr/include/ cp -fpR /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-install/usr/lib/libcurl.{a,so*} /mydisk/omada_gateway/tmp/stage-curl/usr/lib/ cp -fpR /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/libcurl.pc /mydisk/omada_gateway/tmp/stage-curl/usr/lib/pkgconfig/ /mydisk/omada_gateway/staging_dir/host/bin/sed -i -e 's,^\(prefix\|exec_prefix\)=.*,\1=/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/usr,g' /mydisk/omada_gateway/tmp/stage-curl/usr/bin/curl-config [ -n "-L/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/usr/lib -L/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/lib -L/mydisk/omada_gateway/staging_dir/toolchain-aarch64_cortex-a53_gcc-8.4.0_musl-1.2.4/usr/lib -L/mydisk/omada_gateway/staging_dir/toolchain-aarch64_cortex-a53_gcc-8.4.0_musl-1.2.4/lib -Wl,--gc-sections" ] && /mydisk/omada_gateway/staging_dir/host/bin/sed -i -e 's#-L/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/usr/lib -L/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/lib -L/mydisk/omada_gateway/staging_dir/toolchain-aarch64_cortex-a53_gcc-8.4.0_musl-1.2.4/usr/lib -L/mydisk/omada_gateway/staging_dir/toolchain-aarch64_cortex-a53_gcc-8.4.0_musl-1.2.4/lib -Wl,--gc-sections##g' /mydisk/omada_gateway/tmp/stage-curl/usr/lib/pkgconfig/libcurl.pc || true ln -sf /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/usr/bin/curl-config /mydisk/omada_gateway/tmp/stage-curl/host/bin/ find /mydisk/omada_gateway/tmp/stage-curl -name '*.la' | xargs -r rm -f; if [ -f /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/packages/curl.list ]; then /mydisk/omada_gateway/scripts/clean-package.sh "/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/packages/curl.list" "/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1"; fi if [ -d /mydisk/omada_gateway/tmp/stage-curl ]; then (cd /mydisk/omada_gateway/tmp/stage-curl; find ./ > /mydisk/omada_gateway/tmp/stage-curl.files); SHELL= /mydisk/omada_gateway/staging_dir/host/bin/flock /mydisk/omada_gateway/tmp/.staging-dir.flock -c ' mv /mydisk/omada_gateway/tmp/stage-curl.files /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/packages/curl.list && cp -fpR /mydisk/omada_gateway/tmp/stage-curl/* /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/; '; fi rm -rf /mydisk/omada_gateway/tmp/stage-curl touch /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/stamp/.curl_installed mkdir -p /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl/CONTROL /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo install -d -m0755 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl/usr/bin install -m0755 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-install/usr/bin/curl /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl/usr/bin/ find /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl -name 'CVS' -o -name '.svn' -o -name '.#*' -o -name '*~'| xargs -r rm -rf export CROSS="aarch64-openwrt-linux-musl-" NO_RENAME=1 ; NM="aarch64-openwrt-linux-musl-nm" STRIP="aarch64-openwrt-linux-musl-strip --strip-all" STRIP_KMOD="/mydisk/omada_gateway/scripts/strip-kmod.sh" /mydisk/omada_gateway/scripts/rstrip.sh /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl rstrip.sh: /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl/usr/bin/curl:executable ( echo "Package: curl"; echo "Version: 7.83.1"; DEPENDS=''; for depend in libc libcurl; do DEPENDS=${DEPENDS:+$DEPENDS, }${depend##+}; done; [ -z "$DEPENDS" ] || echo "Depends: $DEPENDS"; echo "Source: package/network/utils/curl"; echo "License: MIT"; echo "LicenseFiles: COPYING"; echo "Section: net"; echo "Maintainer: Stan Grishin <stangri@melmac.ca>"; echo "Architecture: aarch64_cortex-a53"; echo "Installed-Size: 0"; echo -n "Description: "; . /mydisk/omada_gateway/include/shell.sh; getvar V_Package_curl_description | sed -e 's,^[[:space:]]*, ,g'; ) > /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl/CONTROL/control chmod 644 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl/CONTROL/control . /mydisk/omada_gateway/include/shell.sh; (cd /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl/CONTROL; ) install -d -m0755 /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages ipkg-build -c -o 0 -g 0 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages Packaged contents of /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-aarch64_cortex-a53/curl into /mydisk/omada_gateway/bin/mediatek-er706wp-4g_un_v1/packages/curl_7.83.1_aarch64_cortex-a53.ipk rm -rf /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-curl mkdir -p /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/stamp /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-curl install -d -m0755 /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-curl/usr/bin install -m0755 /mydisk/omada_gateway/build_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/curl-7.83.1/ipkg-install/usr/bin/curl /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-curl/usr/bin/ SHELL= /mydisk/omada_gateway/staging_dir/host/bin/flock /mydisk/omada_gateway/tmp/.root-copy.flock -c 'cp -fpR /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-curl/. /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/' rm -rf /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/tmp-curl touch /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/root-mediatek/stamp/.curl_installed if [ -f /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install.clean ]; then rm -f /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install.clean; fi; echo "curl" >> /mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/pkginfo/curl.default.install make[3]: Leaving directory '/mydisk/omada_gateway/package/network/utils/curl' make[2]: Leaving directory '/mydisk/omada_gateway' package/Makefile:202: recipe for target '/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/stamp/.package_compile' failed make[1]: *** [/mydisk/omada_gateway/staging_dir/target-aarch64_cortex-a53_musl-1.2.4-er706wp-4g_un_v1/stamp/.package_compile] Error 2 make[1]: Leaving directory '/mydisk/omada_gateway' /mydisk/omada_gateway/include/toplevel.mk:171: recipe for target 'world' failed make: *** [world] Error 2
11-18
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值